diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c8737a9..9262022 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -34,6 +34,7 @@ export default function BlogPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Get Started", href: "contact" }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 261961f..2c1a37c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function TallinnOldTownPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Get Started", href: "contact" }} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index c97acd2..b3ba349 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -41,6 +41,7 @@ export default function ProductsPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} @@ -112,6 +113,7 @@ export default function ProductsPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..9029f02 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,125 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Sparkles } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index d40eca2..6a972bf 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -91,6 +91,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -163,6 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -242,6 +244,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 730eb8f..545ac6c 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -41,6 +41,7 @@ export default function ShopPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} @@ -112,6 +113,7 @@ export default function ShopPage() { { name: "History", id: "history" }, { name: "Events", id: "events" }, { name: "Plan Your Visit", id: "faq" }, + { name: "Services", id: "/services" }, { name: "Products", id: "/products" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }}