Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-09 23:55:05 +00:00

View File

@@ -3,13 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, Shield, Star, Award } from 'lucide-react';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LandingPage() {
return (
@@ -33,7 +32,7 @@ export default function LandingPage() {
{ name: "About", id: "#about" },
{ name: "Experience", id: "#experience" },
]}
brandName="ERAX"
brandName="ERAX (3D Identity)"
button={{ text: "Get Started", href: "#" }}
/>
</div>
@@ -87,26 +86,28 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", title: "Exceptional Quality", quote: "ERAX provides a quality of tailoring I've never seen before.", name: "Alex Rivier", role: "Fashion Editor", imageSrc: "http://img.b2bpic.net/free-photo/dreamy-curly-woman-pink-suit-sitting-near-mirror_197531-16809.jpg?_wi=1" },
{ id: "2", title: "Futuristic Aesthetic", quote: "Finally, a brand that combines high tech with luxury wear.", name: "Sienna Thorne", role: "Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/dreamy-curly-woman-pink-suit-sitting-near-mirror_197531-16809.jpg?_wi=2" }
]}
title="Voices of Visionaries"
description="How ERAX is redefining modern fashion."
<TestimonialCardFifteen
testimonial="ERAX provides a quality of tailoring I've never seen before. Truly the future of luxury wear."
rating={5}
author="Alex Rivier - Fashion Editor"
avatars={[{ src: "http://img.b2bpic.net/free-photo/dreamy-curly-woman-pink-suit-sitting-near-mirror_197531-16809.jpg?_wi=1", alt: "Alex Rivier" }]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="ERAX"
leftLink={{ text: "Terms of Service", href: "#" }}
rightLink={{ text: "Contact Support", href: "#contact" }}
<FooterSimple
columns={[
{ title: "Brand", items: [{ label: "Heritage" }, { label: "Innovation" }] },
{ title: "Support", items: [{ label: "Contact" }, { label: "Terms" }] }
]}
bottomLeftText="© 2024 ERAX Luxury House"
bottomRightText="Designed for the Visionary"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}