diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..ff0cb56 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,58 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import { BookOpen } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 6379eac..8db22e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextAbout from '@/components/sections/about/TextAbout'; +import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; export default function LandingPage() { return ( @@ -31,6 +32,7 @@ export default function LandingPage() { navItems={[ { name: "Science", id: "science" }, { name: "Benefits", id: "benefits" }, + { name: "Education", id: "blog" }, { name: "Physician-Led", id: "team" }, { name: "FAQ", id: "faq" } ]} @@ -80,6 +82,24 @@ export default function LandingPage() { /> +
+ +
+
); -} +} \ No newline at end of file diff --git a/src/app/science/page.tsx b/src/app/science/page.tsx new file mode 100644 index 0000000..a64d59e --- /dev/null +++ b/src/app/science/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; + +export default function SciencePage() { + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file