Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e48ef51342 | |||
| cc820db3f1 | |||
| e9c6798cae | |||
| d437d857f7 | |||
| 229b504ba3 |
@@ -33,10 +33,10 @@ export default function BlogPage() {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Get Started", href: "/#contact" }}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { CheckCircle, Clock, ShieldCheck, Smile, Sparkles, Users, Workflow } from "lucide-react";
|
||||
|
||||
@@ -145,20 +145,20 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
<ContactSplit
|
||||
tag="Contact Us"
|
||||
title="Ready to Revolutionize Your Notetaking?"
|
||||
description="Connect with our team to discover how NoteGenius AI can empower your business."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Business Email", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your needs...", rows: 5, required: false }}
|
||||
background={{ variant: 'plain' }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-stylized-illustration-of-a-diverse-tea-1771701003795-99c299cf.png"
|
||||
imageAlt="Diverse team collaborating with AI notetaking tools"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="left"
|
||||
inputPlaceholder="Your Business Email"
|
||||
buttonText="Send Message"
|
||||
termsText="By signing up, you agree to our Terms and Conditions."
|
||||
onSubmit={(email) => console.log("Email submitted:", email)}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
|
||||
@@ -98,7 +98,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -151,7 +151,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -211,7 +211,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
|
||||
@@ -41,7 +41,7 @@ function ShopPageContent() {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Cart", onClick: () => {} }}
|
||||
@@ -93,7 +93,7 @@ function ShopPageContent() {
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="NoteGenius AI"
|
||||
button={{ text: "Cart", onClick: () => {} }}
|
||||
|
||||
Reference in New Issue
Block a user