From 523adae062d686ca8f86549d8bef6a67df532bec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 20:33:09 +0000 Subject: [PATCH 1/3] Add src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/app/about-us/page.tsx diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..093d296 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function AboutUsPage() { + return ( + + + + + ); +} \ No newline at end of file From 46f54ae0caf84b210ee6742335913d93812cf47f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 20:33:10 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 493cea1..2c8d010 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, + { name: "Pricing", href: "/pricing" }, { name: "Contact", id: "contact" }, ]} brandName="SublimeSites" From ffbcf29e54405153fc902baf2f9034f66a4f410f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 20:33:10 +0000 Subject: [PATCH 3/3] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..3902283 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function PricingPage() { + return ( + + + + + ); +} \ No newline at end of file