initial commit
This commit is contained in:
commit
0f94d1300e
18 changed files with 947 additions and 0 deletions
12
app/services/[slug]/page.tsx
Normal file
12
app/services/[slug]/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
"use client"
|
||||
|
||||
import { ServicesShell } from "@/components/front/services"
|
||||
import { useParams } from "next/navigation"
|
||||
|
||||
export default function Service() {
|
||||
const slug = useParams().slug
|
||||
|
||||
return (
|
||||
<ServicesShell slug={slug as string} />
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue