diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0171281..75b0bdc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,22 +6,20 @@ import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Sparkles, TrendingUp } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Features", id: "features" }, - { name: "About", id: "about" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", id: "https://docs.example.com" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Docs", id: "/docs" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Documentation", href: "/docs" }, @@ -29,8 +27,7 @@ export default function AboutPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -38,8 +35,7 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Community", href: "#" }, { label: "Tutorials", href: "#" }, { label: "Templates", href: "#" }, @@ -47,8 +43,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, @@ -73,13 +68,7 @@ export default function AboutPage() { @@ -101,28 +90,16 @@ export default function AboutPage() {

© 2025 Replit Automation. All rights reserved.

-
- Privacy Policy - Terms of Service - Contact -
diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 672b647..4ba39d1 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -3,26 +3,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import FeatureBento from "@/components/sections/feature/FeatureBento"; -import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Sparkles, - HelpCircle, Webhook, Globe, Zap, - Settings, - Database, - GitBranch, - FileJson, - Activity, - Bug, - Share2, - Download, - Lock, - Bell, } from "lucide-react"; const FeaturesPage = () => { @@ -45,9 +32,9 @@ const FeaturesPage = () => { brandName="Replit Automation" navItems={[ { name: "Features", id: "/features" }, - { name: "About", id: "about" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", id: "https://docs.example.com" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Docs", id: "/docs" }, { name: "Contact", id: "contact" }, ]} /> @@ -63,41 +50,23 @@ const FeaturesPage = () => { tagAnimation="slide-up" features={[ { - title: "Infinite Canvas", - description: - "Pan and zoom freely across unlimited workspace to organize complex workflows without constraints", - bentoComponent: "globe", - }, + title: "Infinite Canvas", description: + "Pan and zoom freely across unlimited workspace to organize complex workflows without constraints", bentoComponent: "globe"}, { - title: "Real-Time Execution", - description: - "Watch nodes highlight in real-time as workflows execute with instant status updates and live feedback", - bentoComponent: "animated-bar-chart", - }, + title: "Real-Time Execution", description: + "Watch nodes highlight in real-time as workflows execute with instant status updates and live feedback", bentoComponent: "animated-bar-chart"}, { - title: "Node Library", - description: - "Access webhook triggers, HTTP requests, JSON transformers, schedulers, and custom nodes", - bentoComponent: "3d-stack-cards", - items: [ + title: "Node Library", description: + "Access webhook triggers, HTTP requests, JSON transformers, schedulers, and custom nodes", bentoComponent: "3d-stack-cards", items: [ { icon: Webhook, - title: "Webhook Trigger", - subtitle: "Trigger workflows", - detail: "From HTTP requests", - }, + title: "Webhook Trigger", subtitle: "Trigger workflows", detail: "From HTTP requests"}, { icon: Globe, - title: "HTTP Request", - subtitle: "Make API calls", - detail: "GET, POST, PUT, DELETE", - }, + title: "HTTP Request", subtitle: "Make API calls", detail: "GET, POST, PUT, DELETE"}, { icon: Zap, - title: "Transform Data", - subtitle: "JSON Processing", - detail: "Parse and modify data", - }, + title: "Transform Data", subtitle: "JSON Processing", detail: "Parse and modify data"}, ], }, ]} @@ -109,51 +78,12 @@ const FeaturesPage = () => { /> - {/* FAQ Section */} -
- -
- {/* Contact Section */}
{ logoText="Replit Automation" columns={[ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "/features" }, { label: "Pricing", href: "#pricing" }, { label: "Documentation", href: "/docs" }, @@ -177,8 +106,7 @@ const FeaturesPage = () => { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -186,8 +114,7 @@ const FeaturesPage = () => { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Community", href: "#" }, { label: "Tutorials", href: "#" }, { label: "Templates", href: "#" }, @@ -195,8 +122,7 @@ const FeaturesPage = () => { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, diff --git a/src/app/page.tsx b/src/app/page.tsx index dc4b875..6b0ef59 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,13 +10,11 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Sparkles, TrendingUp, MessageCircle, Award, - HelpCircle, Webhook, Globe, Zap, @@ -52,9 +50,9 @@ const HomePage = () => { brandName="Replit Automation" navItems={[ { name: "Features", id: "/features" }, - { name: "About", id: "about" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", id: "https://docs.example.com" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Docs", id: "/docs" }, { name: "Contact", id: "contact" }, ]} /> @@ -65,20 +63,14 @@ const HomePage = () => { { tagAnimation="slide-up" features={[ { - title: "Infinite Canvas", - description: - "Pan and zoom freely across unlimited workspace to organize complex workflows", - bentoComponent: "globe", - }, + title: "Infinite Canvas", description: + "Pan and zoom freely across unlimited workspace to organize complex workflows", bentoComponent: "globe"}, { - title: "Real-Time Execution", - description: - "Watch nodes highlight in real-time as workflows execute with instant status updates", - bentoComponent: "animated-bar-chart", - }, + title: "Real-Time Execution", description: + "Watch nodes highlight in real-time as workflows execute with instant status updates", bentoComponent: "animated-bar-chart"}, { - title: "Node Library", - description: - "Access webhook triggers, HTTP requests, JSON transformers, schedulers, and custom nodes", - bentoComponent: "3d-stack-cards", - items: [ + title: "Node Library", description: + "Access webhook triggers, HTTP requests, JSON transformers, schedulers, and custom nodes", bentoComponent: "3d-stack-cards", items: [ { icon: Webhook, - title: "Webhook Trigger", - subtitle: "Trigger workflows", - detail: "From HTTP requests", - }, + title: "Webhook Trigger", subtitle: "Trigger workflows", detail: "From HTTP requests"}, { icon: Globe, - title: "HTTP Request", - subtitle: "Make API calls", - detail: "GET, POST, PUT, DELETE", - }, + title: "HTTP Request", subtitle: "Make API calls", detail: "GET, POST, PUT, DELETE"}, { icon: Zap, - title: "Transform Data", - subtitle: "JSON Processing", - detail: "Parse and modify data", - }, + title: "Transform Data", subtitle: "JSON Processing", detail: "Parse and modify data"}, ], }, { - title: "Configuration Panel", - description: - "Edit node properties with an intuitive side panel for each node type", - bentoComponent: "phone", - statusIcon: Lock, + title: "Configuration Panel", description: + "Edit node properties with an intuitive side panel for each node type", bentoComponent: "phone", statusIcon: Lock, alertIcon: Bell, - alertTitle: "Config Updated", - alertMessage: "Your node settings have been saved", - apps: [ + alertTitle: "Config Updated", alertMessage: "Your node settings have been saved", apps: [ { name: "Settings", icon: Settings }, { name: "Data", icon: Database }, { name: "Logic", icon: GitBranch }, @@ -158,28 +127,16 @@ const HomePage = () => { ], }, { - title: "Execution Logs", - description: - "View detailed execution output and debugging information for each workflow run", - bentoComponent: "timeline", - heading: "Execution Flow", - subheading: "Track workflow progress", - items: [ + title: "Execution Logs", description: + "View detailed execution output and debugging information for each workflow run", bentoComponent: "timeline", heading: "Execution Flow", subheading: "Track workflow progress", items: [ { - label: "Webhook Received", - detail: "Triggered at 14:32:15", - }, + label: "Webhook Received", detail: "Triggered at 14:32:15"}, { - label: "HTTP Request Sent", - detail: "POST to /api/data completed", - }, + label: "HTTP Request Sent", detail: "POST to /api/data completed"}, { - label: "Data Transformed", - detail: "JSON processing finished", - }, + label: "Data Transformed", detail: "JSON processing finished"}, ], - completedLabel: "Workflow Completed", - }, + completedLabel: "Workflow Completed"}, ]} animationType="slide-up" textboxLayout="default" @@ -214,25 +171,13 @@ const HomePage = () => { tagAnimation="slide-up" metrics={[ { - id: "1", - value: "500K+", - description: "Workflows Created", - }, + id: "1", value: "500K+", description: "Workflows Created"}, { - id: "2", - value: "50M+", - description: "Executions Per Month", - }, + id: "2", value: "50M+", description: "Executions Per Month"}, { - id: "3", - value: "99.9%", - description: "Platform Uptime", - }, + id: "3", value: "99.9%", description: "Platform Uptime"}, { - id: "4", - value: "2.5K+", - description: "Active Teams", - }, + id: "4", value: "2.5K+", description: "Active Teams"}, ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -253,65 +198,29 @@ const HomePage = () => { tagAnimation="slide-up" testimonials={[ { - id: "1", - name: "Sarah Chen", - handle: "@dataengineer", - testimonial: - "The visual workflow builder is intuitive and powerful. We reduced our data pipeline setup time by 80% using this platform.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-software-engi-1773159223352-fa9579a8.jpg?_wi=1", - imageAlt: "Sarah Chen", - }, + id: "1", name: "Sarah Chen", handle: "@dataengineer", testimonial: + "The visual workflow builder is intuitive and powerful. We reduced our data pipeline setup time by 80% using this platform.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-software-engi-1773159223352-fa9579a8.jpg?_wi=1", imageAlt: "Sarah Chen"}, { - id: "2", - name: "Marcus Johnson", - handle: "CTO, TechFlow Inc", - testimonial: - "Real-time execution feedback is a game-changer. Our team can now debug workflows instantly without complex logging.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-product-manag-1773159224806-5ee55511.png?_wi=1", - imageAlt: "Marcus Johnson", - }, + id: "2", name: "Marcus Johnson", handle: "CTO, TechFlow Inc", testimonial: + "Real-time execution feedback is a game-changer. Our team can now debug workflows instantly without complex logging.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-product-manag-1773159224806-5ee55511.png?_wi=1", imageAlt: "Marcus Johnson"}, { - id: "3", - name: "Elena Rodriguez", - handle: "DevOps Lead", - testimonial: - "The node library is comprehensive and extensible. We've integrated our custom APIs seamlessly into workflows.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-devops-engine-1773159223841-b1c40d63.png?_wi=1", - imageAlt: "Elena Rodriguez", - }, + id: "3", name: "Elena Rodriguez", handle: "DevOps Lead", testimonial: + "The node library is comprehensive and extensible. We've integrated our custom APIs seamlessly into workflows.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-devops-engine-1773159223841-b1c40d63.png?_wi=1", imageAlt: "Elena Rodriguez"}, { - id: "4", - name: "David Park", - handle: "Founder, AutoScale", - testimonial: - "From prototype to production, this platform handled everything we threw at it. Outstanding reliability and support.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-startup-found-1773159223429-7fc20ed5.jpg?_wi=1", - imageAlt: "David Park", - }, + id: "4", name: "David Park", handle: "Founder, AutoScale", testimonial: + "From prototype to production, this platform handled everything we threw at it. Outstanding reliability and support.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-startup-found-1773159223429-7fc20ed5.jpg?_wi=1", imageAlt: "David Park"}, { - id: "5", - name: "Priya Patel", - handle: "ML Engineer", - testimonial: - "Triggering ML pipelines has never been easier. The webhook integration is rock-solid and incredibly fast.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-data-scientis-1773159224169-ccddd0e7.png?_wi=1", - imageAlt: "Priya Patel", - }, + id: "5", name: "Priya Patel", handle: "ML Engineer", testimonial: + "Triggering ML pipelines has never been easier. The webhook integration is rock-solid and incredibly fast.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-data-scientis-1773159224169-ccddd0e7.png?_wi=1", imageAlt: "Priya Patel"}, { - id: "6", - name: "James Wright", - handle: "Architect", - testimonial: - "Enterprise-grade automation at your fingertips. This is the future of workflow orchestration.", - imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-senior-archit-1773159223611-10c25e20.png?_wi=1", - imageAlt: "James Wright", - }, + id: "6", name: "James Wright", handle: "Architect", testimonial: + "Enterprise-grade automation at your fingertips. This is the future of workflow orchestration.", imageSrc: + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al9KxfTg50MYDrJAi38iMzJ0ll/professional-headshot-of-a-senior-archit-1773159223611-10c25e20.png?_wi=1", imageAlt: "James Wright"}, ]} animationType="slide-up" textboxLayout="default" @@ -330,14 +239,7 @@ const HomePage = () => { tagIcon={Award} tagAnimation="slide-up" names={[ - "TechFlow Inc", - "DataSync Systems", - "CloudAutomation", - "IntegrationHub", - "WorkflowPro", - "AutoScale Labs", - "DevOps Central", - ]} + "TechFlow Inc", "DataSync Systems", "CloudAutomation", "IntegrationHub", "WorkflowPro", "AutoScale Labs", "DevOps Central"]} textboxLayout="default" useInvertedBackground={false} speed={40} @@ -350,7 +252,7 @@ const HomePage = () => { { logoText="Replit Automation" columns={[ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "/features" }, { label: "Pricing", href: "#pricing" }, { label: "Documentation", href: "/docs" }, @@ -374,8 +275,7 @@ const HomePage = () => { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -383,8 +283,7 @@ const HomePage = () => { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Community", href: "#" }, { label: "Tutorials", href: "#" }, { label: "Templates", href: "#" }, @@ -392,8 +291,7 @@ const HomePage = () => { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 138c593..cb41028 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -6,14 +6,20 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { MessageCircle } from "lucide-react"; export default function PricingPage() { + const navItems = [ + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Docs", id: "/docs" }, + { name: "Contact", id: "contact" }, + ]; + const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Documentation", href: "/docs" }, @@ -21,8 +27,7 @@ export default function PricingPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -30,8 +35,7 @@ export default function PricingPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Community", href: "#" }, { label: "Tutorials", href: "#" }, { label: "Templates", href: "#" }, @@ -39,8 +43,7 @@ export default function PricingPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, @@ -65,13 +68,7 @@ export default function PricingPage() { @@ -79,25 +76,13 @@ export default function PricingPage() {