Update src/app/page.tsx

This commit is contained in:
2026-04-10 06:43:08 +00:00
parent ce1e529299
commit 0ff67dd690

View File

@@ -10,7 +10,8 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Shield } from "lucide-react";
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Shield, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -33,7 +34,7 @@ export default function LandingPage() {
{ name: "Experience", id: "hero" },
{ name: "About", id: "about" },
{ name: "Artists", id: "artists" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" },
]}
brandName="Dapper Dog Tattoo"
@@ -43,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="ANNAPOLIS PREMIER TATTOO EXPERIENCE"
description="Precision artistry meets chill professionalism—895 fivestar reviews, eight elite artists, 55 Maryland Ave. Where every line counts."
description="Precision artistry meets chill professionalism—895+ five-star reviews, eight elite artists, 55 Maryland Ave. Where every line counts."
buttons={[{ text: "CLAIM YOUR CHAIR", href: "#contact" }]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C9fZa1xasUdPYrwIOG9DQGpmTv/uploaded-1775802972656-3xix9wrt.png"
@@ -89,6 +90,16 @@ export default function LandingPage() {
/>
</div>
<div id="reviews" data-section="reviews">
<SocialProofOne
title="5-Star Reputation"
description="Trusted by thousands of clients in Annapolis and beyond for our clean, professional, and high-quality artistic services."
names={["Google Rated 5.0", "Yelp Top Rated", "Best of Annapolis", "Award Winning", "Verified Reviews"]}
tag="Quality Commitment"
tagIcon={Star}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={false}
@@ -124,7 +135,7 @@ export default function LandingPage() {
background={{ variant: "plain" }}
tag="Booking"
title="Ready to Start?"
description="The elite experience awaits. Get in touch to schedule your consultation."
description="Call us directly at +1 443-808-8126 or get in touch to schedule your consultation."
buttons={[{ text: "INQUIRE NOW", href: "#" }]}
/>
</div>
@@ -136,14 +147,17 @@ export default function LandingPage() {
{
title: "Studio", items: [{ label: "About Us", href: "#about" }, { label: "Our Artists", href: "#artists" }],
},
{
title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }],
},
{
title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }],
},
]}
copyrightText="© 2025 Dapper Dog Tattoo. All rights reserved."
copyrightText="© 2025 Dapper Dog Tattoo. +1 443-808-8126. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}