Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/blog/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { RootProvider } from "fumadocs-ui/provider/next";
import "./global.css";
import { Inter, Barlow } from "next/font/google";
import Script from "next/script";
import { FontAwesomeScript } from "@prisma-docs/eclipse";

const inter = Inter({
subsets: ["latin"],
Expand Down Expand Up @@ -29,6 +29,7 @@ export default function Layout({ children }: LayoutProps<"/">) {
</head>
<body className="flex flex-col min-h-screen">
<RootProvider>{children}</RootProvider>
<FontAwesomeScript />
</body>
</html>
);
Expand Down
2 changes: 2 additions & 0 deletions apps/docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Inter, Barlow } from "next/font/google";
import type { Metadata } from "next";
import type { ReactNode } from "react";
import Script from "next/script";
import { FontAwesomeScript } from "@prisma-docs/eclipse";

const inter = Inter({
subsets: ["latin"],
Expand Down Expand Up @@ -46,6 +47,7 @@ export default function Layout({ children }: { children: ReactNode }) {
src="https://cdn-cookieyes.com/client_data/96980f76df67ad5235fc3f0d/script.js"
id="cookieyes"
/>
<FontAwesomeScript />
</body>
</html>
);
Expand Down
Loading
Loading