Skip to content

Commit

Permalink
chore(seo, assets): add open graph metadata and images
Browse files Browse the repository at this point in the history
  • Loading branch information
tyronejosee committed Oct 2, 2024
1 parent e6cc2e6 commit b9d5ed9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Binary file added assets/seo/open-graph-image.webp
Binary file not shown.
18 changes: 17 additions & 1 deletion frontend/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,29 @@ import {
} from "@/lib/api";

export const metadata: Metadata = {
title: "Atlanta Ink - Tattoo Studio ",
title: "Atlanta Ink - Tattoo Studio",
description:
"Welcome to Atlanta Ink, your premier tattoo studio. We specialize in custom tattoo designs, ensuring every piece is unique and tailored to your vision. Book your session today!",
keywords:
"atlanta ink, tattoo studio, custom tattoos, tattoo designs, tattoo artists, atlanta",
openGraph: {
title: "Atlanta Ink - Tattoo Studio",
description:
"Welcome to Atlanta Ink, your premier tattoo studio. We specialize in custom tattoo designs, ensuring every piece is unique and tailored to your vision. Book your session today!",
url: "https://atlanta-ink-studio.vercel.app/",
images: [
{
url: "https://res.cloudinary.com/dwyvfa5dj/image/upload/v1727889010/Atlanta%20Ink%20API/atlanta-ink-seo.webp",
width: 1280,
height: 720,
alt: "Atlanta Ink Seo",
},
],
siteName: "Atlanta Ink",
},
};

// https://res.cloudinary.com/dwyvfa5dj/image/upload/v1727889010/Atlanta%20Ink%20API/atlanta-ink-seo.webp
export default async function HomePage() {
const [services, tattoos, artists, prices, productsData, faqs] =
await Promise.all([
Expand Down

0 comments on commit b9d5ed9

Please sign in to comment.