Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 887dbd49a3 | |||
| 6a9c931b14 | |||
| a6eaf37089 | |||
| 452819b548 | |||
| b677237150 | |||
| 7c22cbe1c7 | |||
| 2510d10ffd | |||
| 7fe029f5e9 | |||
| 643b973d4a | |||
| fe57f78da0 | |||
| 2c2a612dbd | |||
| e3552c4a4f | |||
| 547aa17e78 | |||
| 66f1054132 |
25
src/app/about/page.tsx
Normal file
25
src/app/about/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
45
src/app/chat/page.tsx
Normal file
45
src/app/chat/page.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function ChatPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
]}
|
||||
brandName="Lovable"
|
||||
/>
|
||||
</div>
|
||||
<main className="flex h-[calc(100vh-80px)] w-full overflow-hidden mt-20">
|
||||
<div className="w-1/2 border-r border-border p-6 overflow-y-auto">
|
||||
<h1 className="text-2xl font-bold mb-4">Live Chat</h1>
|
||||
<div className="bg-card p-4 rounded-lg">Chat messages would go here...</div>
|
||||
</div>
|
||||
<div className="w-1/2 p-6 overflow-y-auto">
|
||||
<h1 className="text-2xl font-bold mb-4">Live Preview</h1>
|
||||
<div className="bg-card p-4 rounded-lg">Live application preview would render here...</div>
|
||||
</div>
|
||||
</main>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
25
src/app/contact/page.tsx
Normal file
25
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
25
src/app/documentation/page.tsx
Normal file
25
src/app/documentation/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -11,6 +11,11 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleAuthAction = () => {
|
||||
// Implementation logic for Auth Flow
|
||||
console.log("Redirecting to Authentication Flow...");
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -47,7 +52,7 @@ export default function LandingPage() {
|
||||
description="AI-powered web development that combines stunning design with production-ready code. Ship faster without sacrificing quality or your creative vision."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Building Free", href: "#"},
|
||||
text: "Start Building Free", onClick: handleAuthAction},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
@@ -133,7 +138,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p1", badge: "Free", price: "$0", subtitle: "For personal side projects", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "#"},
|
||||
text: "Get Started", onClick: handleAuthAction},
|
||||
],
|
||||
features: [
|
||||
"Limited generations", "Community support", "Public repos"],
|
||||
@@ -141,7 +146,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p2", badge: "Pro", price: "$49/mo", subtitle: "For rapid builders", buttons: [
|
||||
{
|
||||
text: "Go Pro", href: "#"},
|
||||
text: "Go Pro", onClick: handleAuthAction},
|
||||
],
|
||||
features: [
|
||||
"Unlimited generations", "Priority AI model", "Commercial license", "GitHub sync"],
|
||||
@@ -149,7 +154,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p3", badge: "Team", price: "$199/mo", subtitle: "For scaling teams", buttons: [
|
||||
{
|
||||
text: "Contact Sales", href: "#"},
|
||||
text: "Contact Sales", onClick: handleAuthAction},
|
||||
],
|
||||
features: [
|
||||
"Team collaboration", "Custom integrations", "SSO & security", "Priority support"],
|
||||
@@ -199,4 +204,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
25
src/app/services/page.tsx
Normal file
25
src/app/services/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user