Skip to content

Commit

Permalink
feat(web): add metadata for SEO and social sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Barcelos authored and Felipe Barcelos committed Oct 19, 2024
1 parent d579a17 commit aeb49d1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
Binary file modified apps/chrome-extension/public/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/chrome-extension/public/icon16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/chrome-extension/public/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions apps/web/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ import { config } from "@repo/shared/config";
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "@repo/ui/components/ui/accordion";
import { Button } from "@repo/ui/components/ui/button";
import { Card } from "@repo/ui/components/ui/card";
import { Metadata } from "next";

export const metadata: Metadata = {
title: "ShadCN Theme Creator for Chrome",
description: "Boost productivity and create stunning ShadCN UI themes in real-time. Customize, preview, and export with ease using our Chrome extension.",
openGraph: {
images: [
{
url: "https://lh3.googleusercontent.com/X18GADYANB-YmBJSFSTaaAvBDS78umAUl6QwmDxw3QgI3-uyLKuhwTI9Vd8BsnMWbLMitp2YQ1kPJc7c156SYN5Lzw=s1280-w1280-h800",
width: 1200,
height: 630,
},
],
},
};

export default function Home() {
return (
Expand Down

0 comments on commit aeb49d1

Please sign in to comment.