Merge version_2 into main #2

Merged
bender merged 5 commits from version_2 into main 2026-03-27 16:50:12 +00:00
5 changed files with 81 additions and 1 deletions

19
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{name: "Features", id: "/#features"}, {name: "Pricing", id: "/pricing"}, {name: "About", id: "/about"}, {name: "Services", id: "/services"}, {name: "Contact", id: "/contact"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
<TextSplitAbout title="About Us" description={["We are building the future of web development, one AI-powered component at a time.", "Our mission is to democratize high-quality software creation for everyone."]} />
<FooterSimple columns={[{ title: "Platform", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/pricing" }] }, { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} bottomLeftText="© 2024 Lovable Dev." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

19
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{name: "Features", id: "/#features"}, {name: "Pricing", id: "/pricing"}, {name: "About", id: "/about"}, {name: "Services", id: "/services"}, {name: "Contact", id: "/contact"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
<ContactText text="Get in touch with our team" background={{variant: "rotated-rays-animated"}} />
<FooterSimple columns={[{ title: "Platform", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/pricing" }] }, { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} bottomLeftText="© 2024 Lovable Dev." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function DocumentationPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{name: "Features", id: "/#features"}, {name: "Pricing", id: "/pricing"}, {name: "About", id: "/about"}, {name: "Services", id: "/services"}, {name: "Contact", id: "/contact"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
<div className="pt-32 pb-20 px-8">
<h1 className="text-4xl font-bold mb-8">Documentation</h1>
<p>Learn everything you need to know about building with Lovable.</p>
</div>
<FooterSimple columns={[{ title: "Platform", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/pricing" }] }, { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} bottomLeftText="© 2024 Lovable Dev." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -199,4 +199,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

21
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ServicesPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{name: "Features", id: "/#features"}, {name: "Pricing", id: "/pricing"}, {name: "About", id: "/about"}, {name: "Services", id: "/services"}, {name: "Contact", id: "/contact"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
<div className="pt-32 pb-20 px-8">
<h1 className="text-4xl font-bold mb-8">Our Services</h1>
<p>We provide enterprise-grade AI solutions for modern startups.</p>
</div>
<FooterSimple columns={[{ title: "Platform", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/pricing" }] }, { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} bottomLeftText="© 2024 Lovable Dev." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}