Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-10 05:50:37 +00:00

View File

@@ -39,7 +39,7 @@ export default function LandingPage() {
]}
brandName="Annapolis Ink"
button={{
text: "Book Now", href: "#contact"}}
text: "Book Now", href: "contact"}}
/>
</div>
@@ -57,8 +57,8 @@ export default function LandingPage() {
]}
avatarText="50 rating from 800 reviews"
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "View Portfolio", href: "#products" },
{ text: "Book Appointment", href: "contact" },
{ text: "View Portfolio", href: "products" },
]}
marqueeItems={[
{ type: "text-icon", text: "Professional", icon: CheckCircle },
@@ -152,7 +152,7 @@ export default function LandingPage() {
title="Book Your Appointment Today"
description="Located in the heart of Annapolis. We're ready to make your vision a reality."
buttons={[
{ text: "Contact Us Now", href: "#" },
{ text: "Contact Us Now", href: "contact" },
]}
/>
</div>
@@ -162,9 +162,9 @@ export default function LandingPage() {
columns={[
{
title: "Studio", items: [
{ label: "About Us", href: "#about" },
{ label: "Artists", href: "#team" },
{ label: "Contact", href: "#contact" },
{ label: "About Us", href: "about" },
{ label: "Artists", href: "team" },
{ label: "Contact", href: "contact" },
],
},
{
@@ -188,4 +188,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}