10 Commits

Author SHA1 Message Date
452819b548 Update src/app/services/page.tsx 2026-03-27 16:50:43 +00:00
b677237150 Update src/app/documentation/page.tsx 2026-03-27 16:50:43 +00:00
7c22cbe1c7 Update src/app/contact/page.tsx 2026-03-27 16:50:42 +00:00
2510d10ffd Update src/app/about/page.tsx 2026-03-27 16:50:42 +00:00
643b973d4a Add src/app/services/page.tsx 2026-03-27 16:50:08 +00:00
fe57f78da0 Update src/app/page.tsx 2026-03-27 16:50:08 +00:00
2c2a612dbd Add src/app/documentation/page.tsx 2026-03-27 16:50:07 +00:00
e3552c4a4f Add src/app/contact/page.tsx 2026-03-27 16:50:07 +00:00
547aa17e78 Add src/app/about/page.tsx 2026-03-27 16:50:07 +00:00
66f1054132 Merge version_1 into main
Merge version_1 into main
2026-03-27 16:46:25 +00:00
5 changed files with 101 additions and 1 deletions

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

@@ -0,0 +1,25 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}, {name: "Services", id: "/services"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
</div>
<div id="about-section" data-section="about-section">
<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."]} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<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="" />
</div>
</ReactLenis>
</ThemeProvider>
);
}

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

@@ -0,0 +1,25 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}, {name: "Services", id: "/services"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
</div>
<div id="contact-text" data-section="contact-text">
<ContactText text="Get in touch with our team" background={{variant: "rotated-rays-animated"}} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<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="" />
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,25 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}, {name: "Services", id: "/services"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
</div>
<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>
<div id="footer" data-section="footer">
<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="" />
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

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

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

@@ -0,0 +1,25 @@
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}, {name: "Services", id: "/services"}, {name: "Documentation", id: "/documentation"}]} brandName="Lovable" />
</div>
<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>
<div id="footer" data-section="footer">
<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="" />
</div>
</ReactLenis>
</ThemeProvider>
);
}