Spaces:
Running
Running
Commit
·
73500bd
1
Parent(s):
9d81652
feat: update README and integrate Umami analytics script
Browse files- Enhanced README with additional links for License and improved formatting.
- Added Umami analytics script to the layout for tracking website usage.
- README.md +3 -2
- app/layout.tsx +2 -0
README.md
CHANGED
@@ -7,8 +7,9 @@
|
|
7 |
</p>
|
8 |
|
9 |
<p align="center">
|
10 |
-
<a href="#features"><strong>Features</strong></a>
|
11 |
-
<a href="#mcp-server-configuration"><strong>MCP Configuration</strong></a>
|
|
|
12 |
</p>
|
13 |
<br/>
|
14 |
|
|
|
7 |
</p>
|
8 |
|
9 |
<p align="center">
|
10 |
+
<a href="#features"><strong>Features</strong></a> •
|
11 |
+
<a href="#mcp-server-configuration"><strong>MCP Configuration</strong></a> •
|
12 |
+
<a href="#license"><strong>License</strong></a>
|
13 |
</p>
|
14 |
<br/>
|
15 |
|
app/layout.tsx
CHANGED
@@ -5,6 +5,7 @@ import { SidebarTrigger } from "@/components/ui/sidebar";
|
|
5 |
import { Menu } from "lucide-react";
|
6 |
import { Providers } from "./providers";
|
7 |
import "./globals.css";
|
|
|
8 |
|
9 |
const inter = Inter({ subsets: ["latin"] });
|
10 |
|
@@ -42,6 +43,7 @@ export default function RootLayout({
|
|
42 |
</main>
|
43 |
</div>
|
44 |
</Providers>
|
|
|
45 |
</body>
|
46 |
</html>
|
47 |
);
|
|
|
5 |
import { Menu } from "lucide-react";
|
6 |
import { Providers } from "./providers";
|
7 |
import "./globals.css";
|
8 |
+
import Script from "next/script";
|
9 |
|
10 |
const inter = Inter({ subsets: ["latin"] });
|
11 |
|
|
|
43 |
</main>
|
44 |
</div>
|
45 |
</Providers>
|
46 |
+
<Script defer src="https://cloud.umami.is/script.js" data-website-id="1373896a-fb20-4c9d-b718-c723a2471ae5" />
|
47 |
</body>
|
48 |
</html>
|
49 |
);
|