From 6a0aefc3fe7129198b7c9ac135f6136e346da17c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:43:15 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1ff10cd..639a3dc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,39 +1,27 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI. No code, no compromise. Native Line turns your ideas into native Swift apps instantly.", keywords: "native app builder, iOS development, app generator, no-code, Swift, indie developers, app creation, AI, macOS", metadataBase: new URL("https://nativeline.app"), + title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI. Native Line generates pure Swift apps instantly.", keywords: "native app builder, iOS development, app generator, Swift, indie developers, app creation, AI, macOS", metadataBase: new URL("https://nativeline.app"), alternates: { canonical: "https://nativeline.app" }, openGraph: { - title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI. Native Line turns your ideas into native Swift apps instantly.", url: "https://nativeline.app", siteName: "Native Line", type: "website", images: [ + title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI. Native Line generates pure Swift apps instantly.", url: "https://nativeline.app", siteName: "Native Line", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQRMtx5ZUGLrwvjDcVIYHeaKiH/a-sleek-macos-application-window-showing-1772522998510-05a82eb5.png", alt: "Native Line App Builder Interface" } ] }, twitter: { - card: "summary_large_image", title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI. No code, no compromise.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQRMtx5ZUGLrwvjDcVIYHeaKiH/a-sleek-macos-application-window-showing-1772522998510-05a82eb5.png"] + card: "summary_large_image", title: "Native Line - Build Native Apps Just Talk", description: "Create production-ready iOS, iPad, and Mac apps with conversational AI.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQRMtx5ZUGLrwvjDcVIYHeaKiH/a-sleek-macos-application-window-showing-1772522998510-05a82eb5.png"] }, robots: { index: true, @@ -49,9 +37,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From c1b3997b9f09b6696ed1986437e758824fa43d7e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:43:16 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 124 ++++++++++++++++++++++++++--------------------- 1 file changed, 69 insertions(+), 55 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 03132a0..db64496 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,9 +10,13 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download } from 'lucide-react'; +import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; +import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download, Moon, Sun } from 'lucide-react'; +import { useState } from 'react'; export default function LandingPage() { + const [isDarkMode, setIsDarkMode] = useState(false); + return (
@@ -123,8 +127,8 @@ export default function LandingPage() { tagIcon={Lightbulb} tagAnimation="slide-up" title="Democratizing App Development" - description="Native Line is built for indie developers, entrepreneurs, and creators who are frustrated with slow, expensive development processes." - subdescription="We believe anyone with an idea deserves the ability to ship production-quality native apps without hiring a team of engineers." + description="Native Line empowers indie developers, entrepreneurs, and creators to build native apps without hiring teams of engineers." + subdescription="We believe anyone with an idea deserves the ability to ship production-quality apps instantly." icon={Rocket} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQRMtx5ZUGLrwvjDcVIYHeaKiH/a-lifestyle-photo-showing-an-indie-devel-1772522999346-c2d8c8e5.png" imageAlt="Developer using Native Line" @@ -134,41 +138,51 @@ export default function LandingPage() {
- + > +
+

Describe Your Idea

+

Tell Native Line what you want to build. Chat to refine your vision.

+
+
+

AI Generates Your App

+

Complete Swift code generated instantly. Real-time previews. Iterate and refine.

+
+
+

Deploy to App Store

+

Export signed app code ready for submission. Fully yours to maintain.

+
+
@@ -177,7 +191,7 @@ export default function LandingPage() {
@@ -209,7 +223,7 @@ export default function LandingPage() {
@@ -253,26 +267,26 @@ export default function LandingPage() {
@@ -283,15 +297,15 @@ export default function LandingPage() { columns={[ { title: "Product", items: [ - { label: "Download for macOS", href: "https://example.com/download" }, + { label: "Download", href: "https://example.com/download" }, { label: "Features", href: "#features" }, { label: "How It Works", href: "#process" }, - { label: "Native Line Cloud", href: "#" } + { label: "Cloud", href: "#" } ] }, { title: "Resources", items: [ - { label: "Documentation", href: "https://docs.example.com" }, + { label: "Docs", href: "https://docs.example.com" }, { label: "Community", href: "https://discord.example.com" }, { label: "Blog", href: "https://blog.example.com" }, { label: "Roadmap", href: "#" } @@ -299,10 +313,10 @@ export default function LandingPage() { }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, + { label: "About", href: "#about" }, { label: "Contact", href: "#contact" }, - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" } + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" } ] } ]} -- 2.49.1 From ace130b8855b723c72c935b9fef9837268b73972 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:43:17 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 0af5aa1..2e43cf6 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #ff8c42;; - --secondary-cta: #f9f9f9;; - --accent: #e2e2e2;; - --background-accent: #c4c4c4;; */ + /* --background: #f5f3f0;; + --card: #faf9f8;; + --foreground: #2d2520;; + --primary-cta: #8b6f47;; + --secondary-cta: #faf9f8;; + --accent: #d4ccc4;; + --background-accent: #c9bfb6;; */ - --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #ff8c42;; + --background: #f5f3f0;; + --card: #faf9f8;; + --foreground: #2d2520;; + --primary-cta: #8b6f47;; --primary-cta-text: #ffffff;; - --secondary-cta: #f9f9f9;; + --secondary-cta: #faf9f8;; --secondary-cta-text: #120a00e6;; - --accent: #e2e2e2;; - --background-accent: #c4c4c4;; + --accent: #d4ccc4;; + --background-accent: #c9bfb6;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1