diff --git a/app/aftercare/page.tsx b/app/aftercare/page.tsx
index 07f600ad4..9b5ce84d6 100644
--- a/app/aftercare/page.tsx
+++ b/app/aftercare/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { AftercarePage } from "@/components/aftercare-page"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Tattoo Aftercare Instructions",
+ description: "Complete aftercare guide for your new tattoo. Learn how to properly care for traditional and transparent bandage tattoos. Expert advice from United Tattoo in Fountain, CO.",
+ path: "/aftercare",
+ keywords: ["tattoo aftercare", "tattoo care", "tattoo healing", "new tattoo", "saniderm aftercare"],
+})
export default function Aftercare() {
return (
diff --git a/app/artists/page.tsx b/app/artists/page.tsx
index 5481a0129..a20185f68 100644
--- a/app/artists/page.tsx
+++ b/app/artists/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { ArtistsPageSection } from "@/components/artists-page-section"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Meet Our Tattoo Artists",
+ description: "Discover talented tattoo artists at United Tattoo in Fountain, CO. Specializing in custom designs, portraits, traditional, and contemporary styles. View portfolios and book today!",
+ path: "/artists",
+ keywords: ["tattoo artists", "fountain colorado tattoo artists", "custom tattoo artists", "portrait tattoos", "traditional tattoos"],
+})
export default function ArtistsPage() {
return (
diff --git a/app/book/page.tsx b/app/book/page.tsx
index 5ba9ee960..3189ad8b8 100644
--- a/app/book/page.tsx
+++ b/app/book/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { BookingForm } from "@/components/booking-form"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Book Your Tattoo Appointment",
+ description: "Schedule your custom tattoo consultation with United Tattoo in Fountain, CO. Easy online booking with our talented artists. Walk-ins welcome!",
+ path: "/book",
+ keywords: ["book tattoo", "tattoo appointment", "tattoo consultation", "schedule tattoo", "fountain colorado tattoo"],
+})
export default function BookPage() {
return (
diff --git a/app/contact/page.tsx b/app/contact/page.tsx
index e1a73251b..15be1e46e 100644
--- a/app/contact/page.tsx
+++ b/app/contact/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { ContactPage } from "@/components/contact-page"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Contact Us",
+ description: "Get in touch with United Tattoo in Fountain, CO. Visit us at 6985 Fountain Mesa Rd or call (719) 390-0039. Walk-ins welcome!",
+ path: "/contact",
+ keywords: ["contact tattoo studio", "fountain tattoo shop", "tattoo studio location", "united tattoo contact"],
+})
export default function Contact() {
return (
diff --git a/app/deposit/page.tsx b/app/deposit/page.tsx
index ae42243d7..b36437570 100644
--- a/app/deposit/page.tsx
+++ b/app/deposit/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { DepositPage } from "@/components/deposit-page"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Deposit Policy & Payment Options",
+ description: "Learn about United Tattoo's deposit policy and flexible payment options including Afterpay. Secure your appointment with our easy deposit process.",
+ path: "/deposit",
+ keywords: ["tattoo deposit", "afterpay tattoo", "payment plans", "tattoo payment options"],
+})
export default function Deposit() {
return (
diff --git a/app/gift-cards/page.tsx b/app/gift-cards/page.tsx
index 03c1b7d81..f9e9af185 100644
--- a/app/gift-cards/page.tsx
+++ b/app/gift-cards/page.tsx
@@ -1,6 +1,14 @@
import { Navigation } from "@/components/navigation"
import { GiftCardsPage } from "@/components/gift-cards-page"
import { Footer } from "@/components/footer"
+import { generateMetadata as createMetadata } from "@/lib/metadata"
+
+export const metadata = createMetadata({
+ title: "Gift Cards",
+ description: "Give the gift of art! Purchase United Tattoo gift cards for custom tattoos, piercings, and more. Perfect for any occasion.",
+ path: "/gift-cards",
+ keywords: ["tattoo gift card", "gift certificate tattoo", "tattoo voucher", "body art gift"],
+})
export default function GiftCards() {
return (
diff --git a/app/layout.tsx b/app/layout.tsx
index 58d6273b0..259a2dcb4 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -6,6 +6,7 @@ import Script from "next/script"
import ClientLayout from "./ClientLayout"
import { getFlags } from "@/lib/flags"
+import { generateMetadata as createMetadata, generateLocalBusinessJsonLd, generateOrganizationJsonLd } from "@/lib/metadata"
import "./globals.css"
@@ -13,18 +14,22 @@ const playfairDisplay = Playfair_Display({
subsets: ["latin"],
variable: "--font-playfair",
display: "swap",
+ preload: true,
})
const sourceSans = Source_Sans_3({
subsets: ["latin"],
variable: "--font-source-sans",
display: "swap",
+ preload: true,
})
-export const metadata: Metadata = {
- title: "United Tattoo - Professional Tattoo Studio",
- description: "Book appointments with our talented artists and explore stunning tattoo portfolios at United Tattoo.",
-}
+export const metadata: Metadata = createMetadata({
+ title: "United Tattoo - Professional Tattoo Studio in Fountain, Colorado",
+ description: "Custom tattoos by talented artists in Fountain, CO. Book your appointment with our award-winning tattoo studio. Specializing in custom designs, portraits, and traditional ink.",
+ path: "/",
+ keywords: ["tattoo", "tattoo studio", "fountain colorado", "custom tattoos", "tattoo artists", "ink", "body art"],
+})
export const dynamic = "force-dynamic";
@@ -34,6 +39,8 @@ export default function RootLayout({
children: React.ReactNode
}>) {
const flags = getFlags({ refresh: true })
+ const localBusinessData = generateLocalBusinessJsonLd()
+ const organizationData = generateOrganizationJsonLd()
return (
@@ -56,6 +63,26 @@ export default function RootLayout({
: ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ ████ :
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/}
+
+ {/* JSON-LD Structured Data for SEO */}
+
+
+
+ {/* Design Credit Console Message */}