From 58dacc1bb6129e363880a584d0c0fca69d30ccb4 Mon Sep 17 00:00:00 2001 From: Railly Date: Tue, 8 Aug 2023 23:07:20 -0500 Subject: [PATCH] feat: add vercel analytics --- README.md | 5 ++++- src/app/layout.tsx | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b7bb4e..89f5d8a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # shadcn/ui customizer -This is an open-source extension of [shadcn/ui](https://github.com/shaddcn-ui/ui) for customizing the theme. +This is an open-source extension of [shadcn/ui](https://github.com/shaddcn-ui/ui) themes for customizing the theme. + +> [!IMPORTANT] +> Original theme customizer: [https://ui.shadcn.com/themes](https://ui.shadcn.com/themes) ## Screenhsots diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fcf1e5..a01ad5e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,7 @@ import "./globals.css"; import Providers from "@/components/providers"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import { Analytics } from "@vercel/analytics/react"; const inter = Inter({ subsets: ["latin"] }); @@ -21,7 +22,10 @@ export default function RootLayout({
{/* */} -
{children}
+
+ {children} + +
{/* */}