Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docs): add analytics #89

Merged
merged 14 commits into from
Aug 29, 2024
19 changes: 11 additions & 8 deletions docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { body, mono } from "./fonts";
import { mono } from "./fonts";
import "./globals.css";


export const metadata: Metadata = {
title: "bulloak - Test Generator using Branching Tree Technique",
description: "bulloak is a powerful test generator that implements the Branching Tree Technique (BTT) for comprehensive smart contract testing.",
keywords: "bulloak, Solidity, test generator, Branching Tree Technique, BTT, smart contracts, Ethereum",
description:
"bulloak is a powerful test generator that implements the Branching Tree Technique (BTT) for comprehensive smart contract testing.",
keywords:
"bulloak, Solidity, test generator, Branching Tree Technique, BTT, smart contracts, Ethereum",
};

export default function RootLayout({
Expand All @@ -19,9 +19,12 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body
className={`${mono.className} antialiased touch-manipulation`}
>{children}</body>
<body className={`${mono.className} antialiased touch-manipulation`}>
{children}

<Analytics />
<SpeedInsights />
</body>
</html>
);
}
Loading