9 Commits

Author SHA1 Message Date
c2856ac21c Update src/app/page.tsx 2026-05-30 15:04:42 +00:00
87913d93a1 Merge version_3 into main
Merge version_3 into main
2026-05-30 15:00:17 +00:00
c13a52c36a Update src/app/page.tsx 2026-05-30 15:00:11 +00:00
280ac12cdd Merge version_3 into main
Merge version_3 into main
2026-05-30 14:54:04 +00:00
66f263d164 Update src/app/page.tsx 2026-05-30 14:54:01 +00:00
ffa4163b8b Add src/app/contact/page.tsx 2026-05-30 14:54:01 +00:00
1a258cd73c Merge version_2 into main
Merge version_2 into main
2026-05-30 14:52:08 +00:00
7c11450596 Merge version_2 into main
Merge version_2 into main
2026-05-30 14:51:44 +00:00
ee9d40c817 Merge version_2 into main
Merge version_2 into main
2026-05-30 14:50:59 +00:00
2 changed files with 126 additions and 28 deletions

111
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,111 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Instagram, Linkedin, Twitter } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeMediumTitles"
background="none"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "/"},
{
name: "Vision", id: "/#vision"},
{
name: "Features", id: "/#features"},
{
name: "Craftsmanship", id: "/#craftsmanship"},
{
name: "Partners", id: "/#partners"},
{
name: "Reviews", id: "/#reviews"},
{
name: "Contact Us", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/close-up-man-with-sunglasses-black-white_1122-1543.jpg"
logoAlt="AuraLens Logo"
brandName="AuraLens"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "radial-gradient"
}}
tag="Get in Touch"
title="We'd Love to Hear From You"
description="Have a question, feedback, or need support? Fill out the form below and our team will get back to you promptly."
tagAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/young-man-with-wireless-earbuds-using-tablet-street_23-2148411985.jpg?_wi=1"
imageAlt="Person using a tablet"
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="Your Email Address"
buttonText="Send Message"
termsText="By clicking 'Send Message', you agree to our Privacy Policy."
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactText
background={{
variant: "plain"
}}
useInvertedBackground={true}
text="You can also reach us directly:\n\nEmail: info@auralens.com\nPhone: +1 (555) 123-4567\nAddress: 123 Aura Blvd, Future City, FC 90210"
animationType="entrance-slide"
buttons={[
{
text: "View on Map", href: "https://maps.google.com/?q=123+Aura+Blvd", // Example map link
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoSrc="http://img.b2bpic.net/free-photo/close-up-man-with-sunglasses-black-white_1122-1543.jpg"
logoAlt="AuraLens Logo"
logoText="AuraLens"
copyrightText="© 2024 AuraLens. All rights reserved."
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com/AuraLens", ariaLabel: "Twitter"
},
{
icon: Instagram,
href: "https://instagram.com/AuraLens", ariaLabel: "Instagram"
},
{
icon: Linkedin,
href: "https://linkedin.com/company/AuraLens", ariaLabel: "LinkedIn"
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
@@ -32,19 +32,19 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", id: "#home"}, name: "Home", id: "/"},
{ {
name: "Vision", id: "#vision"}, name: "Vision", id: "/#vision"},
{ {
name: "Features", id: "#features"}, name: "Features", id: "/#features"},
{ {
name: "Craftsmanship", id: "#craftsmanship"}, name: "Craftsmanship", id: "/#craftsmanship"},
{ {
name: "Partners", id: "#partners"}, name: "Partners", id: "/#partners"},
{ {
name: "Reviews", id: "#reviews"}, name: "Reviews", id: "/#reviews"},
{ {
name: "Pre-Order", id: "#contact"}, name: "Contact Us", id: "/contact"},
]} ]}
logoSrc="http://img.b2bpic.net/free-photo/close-up-man-with-sunglasses-black-white_1122-1543.jpg" logoSrc="http://img.b2bpic.net/free-photo/close-up-man-with-sunglasses-black-white_1122-1543.jpg"
logoAlt="AuraLens Logo" logoAlt="AuraLens Logo"
@@ -53,8 +53,8 @@ export default function LandingPage() {
</div> </div>
<div id="home" data-section="home"> <div id="home" data-section="home">
<HeroOverlay <HeroBillboardScroll
title="AuraLens" title=""
description="See Beyond. Experience Aura. The future, through your eyes." description="See Beyond. Experience Aura. The future, through your eyes."
tag="Introducing a New Era" tag="Introducing a New Era"
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
@@ -62,24 +62,11 @@ export default function LandingPage() {
{ {
text: "Discover AuraLens", href: "#features"}, text: "Discover AuraLens", href: "#features"},
]} ]}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg", alt: "AI Developer"},
{
src: "http://img.b2bpic.net/free-photo/front-view-woman-posing-with-dental-gems_23-2151212439.jpg", alt: "Product Designer"},
{
src: "http://img.b2bpic.net/free-photo/portrait-good-looking-woman-with-curly-hair-winks-eye-clenches-teeth-covers-chin-with-collar-turtleneck-dressed-stylish-leather-jacket-has-playful-expression-isolated-pink-background_273609-62322.jpg", alt: "Futurist"},
{
src: "http://img.b2bpic.net/free-photo/confident-young-bald-call-center-man-putting-hand-chin-looking-isolated-orange-with-copy-space_141793-76739.jpg", alt: "Tech CEO"},
{
src: "http://img.b2bpic.net/free-photo/senior-man-using-laptop-tablet-same-time_482257-8141.jpg", alt: "Senior man using laptop and tablet in same time"},
]}
avatarText="Join the Visionaries"
imageSrc="http://img.b2bpic.net/free-photo/woman-virtual-reality-glasses-smart-technology_53876-97056.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/woman-virtual-reality-glasses-smart-technology_53876-97056.jpg?_wi=1"
imageAlt="AuraLens Smart Glasses floating dramatically" imageAlt="AuraLens Smart Glasses floating dramatically"
showDimOverlay={true} background={{
showBlur={true} variant: "plain"
textPosition="bottom" }}
/> />
</div> </div>
@@ -158,7 +145,7 @@ export default function LandingPage() {
"Futurism Innovators", "Cognito AI", "Veridian Labs", "Nexus Dynamics", "Quantum Leap Ventures", "Synapse Core", "Plexus Innovations"]} "Futurism Innovators", "Cognito AI", "Veridian Labs", "Nexus Dynamics", "Quantum Leap Ventures", "Synapse Core", "Plexus Innovations"]}
title="Trusted by Innovators." title="Trusted by Innovators."
description="Leading tech pioneers and design critics acclaim AuraLens as the next leap in personal technology." description="Leading tech pioneers and design critics acclaim AuraLens as the next leap in personal technology."
showCard={false} showCard={true}
/> />
</div> </div>
@@ -224,4 +211,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }