diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d4deb8..b5def0b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1409,4 +1409,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/news/page.tsx b/src/app/news/page.tsx new file mode 100644 index 0000000..af540ec --- /dev/null +++ b/src/app/news/page.tsx @@ -0,0 +1,85 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function NewsPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e6b850..6ac3a59 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Services", id: "features" }, + { name: "News", id: "/news" }, { name: "Contact", id: "contact" } ]} button={{ @@ -186,4 +187,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}