Merge version_7 into main #8

Merged
bender merged 3 commits from version_7 into main 2026-04-02 20:33:13 +00:00
3 changed files with 60 additions and 0 deletions

27
src/app/about-us/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", href: "/pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="SublimeSites"
/>
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Crafting digital experiences that grow businesses." }]}
useInvertedBackground={false}
/>
</ThemeProvider>
);
}

View File

@@ -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"

32
src/app/pricing/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", href: "/pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="SublimeSites"
/>
<PricingCardEight
title="Transparent Pricing"
description="Choose the plan that fits your business goals."
animationType="slide-up"
plans={[
{ id: "starter", badge: "Essential", price: "$999", subtitle: "Best for individuals", features: ["Basic Web Design", "Mobile Responsive", "SEO Setup"], buttons: [{ text: "Get Started", href: "#contact" }] },
{ id: "pro", badge: "Professional", price: "$1999", subtitle: "Best for businesses", features: ["Everything in Starter", "CMS Integration", "Custom Analytics", "Priority Support"], buttons: [{ text: "Contact Sales", href: "#contact" }] }
]}
/>
</ThemeProvider>
);
}