Skip to content

Commit

Permalink
feat: plausible
Browse files Browse the repository at this point in the history
  • Loading branch information
flowergardn committed Mar 21, 2024
1 parent b39aea5 commit c33f529
Show file tree
Hide file tree
Showing 4 changed files with 714 additions and 3 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"dependencies": {
"@clerk/nextjs": "^4.27.4",
"@prisma/client": "^5.6.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^2.0.2",
"@t3-oss/env-nextjs": "^0.7.1",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^4.36.1",
Expand Down
8 changes: 8 additions & 0 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ import "~/styles/globals.css";
import { ClerkProvider } from "@clerk/nextjs";
import fonts from "~/utils/fonts";
import { Toaster } from "react-hot-toast";
import Head from "next/head";

const BirthdayQuest: AppType = ({ Component, pageProps }) => {
return (
<div className={fonts.satoshi.className}>
<Head>
<script
defer
data-domain="bday.quest"
src="https://analytics.astrid.sh/js/script.js"
></script>
</Head>
<ClerkProvider>
<Toaster
toastOptions={{
Expand Down
1 change: 0 additions & 1 deletion src/pages/manage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import toast from "react-hot-toast";
import dayjs from "dayjs";
import relativeTime from "dayjs/plugin/relativeTime";
import Meta from "~/components/Meta";
import BasePage from "~/components/BasePage";
import Loader from "~/components/Loader";
dayjs.extend(relativeTime);

Expand Down
Loading

0 comments on commit c33f529

Please sign in to comment.