Update src/app/page.tsx

This commit is contained in:
2026-06-03 04:01:10 +00:00
parent c9888cbac9
commit 7e53945271

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -194,31 +194,31 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplitForm
tag="Get in Touch"
title="Connect with AASTU" title="Connect with AASTU"
description="Ready to elevate your style? Connect with AASTU for bespoke consultations, styling advice, or any inquiries about our exclusive collections. We're here to assist you." description="Ready to elevate your style? Connect with AASTU for bespoke consultations, styling advice, or any inquiries about our exclusive collections. We're here to assist you."
background={{
variant: "sparkles-gradient"}}
useInvertedBackground={true} useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/rococo-style-photography-beautiful-woman_23-2151916526.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/rococo-style-photography-beautiful-woman_23-2151916526.jpg?_wi=2"
imageAlt="Elegant woman posing" imageAlt="Elegant woman posing"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="Your email address" inputs={[
buttonText="Subscribe" { name: "name", type: "text", placeholder: "Your Name", required: true },
termsText="By subscribing you agree to receive marketing communications from AASTU." { name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "Your Phone Number" }
]}
textarea={{ name: "message", placeholder: "Your Message", rows: 4 }}
buttonText="Send Message"
onSubmit={(data) => console.log("Contact form submitted:", data)}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterLogoEmphasis
imageSrc="http://img.b2bpic.net/free-photo/portrait-woman-representing-libra-zodiac-sign_23-2151006214.jpg?_wi=2"
imageAlt="Fashion model in elegant setting"
logoText="AASTU" logoText="AASTU"
columns={[ columns={[
{ {
title: "Shop", items: [ items: [
{ {
label: "Shop All", href: "#shop"}, label: "Shop All", href: "#shop"},
{ {
@@ -228,7 +228,7 @@ export default function LandingPage() {
], ],
}, },
{ {
title: "Company", items: [ items: [
{ {
label: "Our Story", href: "#about"}, label: "Our Story", href: "#about"},
{ {
@@ -238,7 +238,7 @@ export default function LandingPage() {
], ],
}, },
{ {
title: "Support", items: [ items: [
{ {
label: "Contact Us", href: "#contact"}, label: "Contact Us", href: "#contact"},
{ {
@@ -248,7 +248,7 @@ export default function LandingPage() {
], ],
}, },
{ {
title: "Legal", items: [ items: [
{ {
label: "Privacy Policy", href: "#"}, label: "Privacy Policy", href: "#"},
{ {
@@ -256,7 +256,6 @@ export default function LandingPage() {
], ],
}, },
]} ]}
copyrightText="© 2025 AASTU. All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>