diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index aebdc92..0d5c39d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,7 +32,8 @@ export default function BlogPage() { { name: "Companies", id: "companies" }, { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" } ]} button={{ text: "Let's Connect", href: "contact" }} brandName="Webild" diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..ac38fab --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,74 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 24c868e..f6b8770 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,8 @@ export default function LandingPage() { { name: "Companies", id: "companies" }, { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" } ]} button={{ text: "Let's Connect", href: "contact" }} brandName="Webild" diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 3b871c7..eaa1b16 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, { name: "Shop", id: "/shop" } ]} brandName="Webild" @@ -135,6 +136,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, { name: "Shop", id: "/shop" } ]} brandName="Webild" @@ -187,6 +189,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, { name: "Shop", id: "/shop" } ]} brandName="Webild" diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 72ffa08..8cf825a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,6 +40,7 @@ export default function ShopPage() { { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, { name: "Shop", id: "/shop" } ]} brandName="Webild" @@ -84,6 +85,7 @@ export default function ShopPage() { { name: "Journey", id: "journey" }, { name: "Work", id: "work" }, { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, { name: "Shop", id: "/shop" } ]} brandName="Webild"