diff --git a/apps/blog/src/app/layout.tsx b/apps/blog/src/app/layout.tsx
index 3f0c7dbe77..ef5105577e 100644
--- a/apps/blog/src/app/layout.tsx
+++ b/apps/blog/src/app/layout.tsx
@@ -1,19 +1,20 @@
-import { RootProvider } from 'fumadocs-ui/provider/next';
-import './global.css';
-import { Inter, Barlow } from 'next/font/google';
+import { RootProvider } from "fumadocs-ui/provider/next";
+import "./global.css";
+import { Inter, Barlow } from "next/font/google";
+import { FontAwesomeScript } from "@prisma-docs/eclipse";
const inter = Inter({
- subsets: ['latin'],
- variable: '--font-inter',
+ subsets: ["latin"],
+ variable: "--font-inter",
});
const barlow = Barlow({
- subsets: ['latin'],
- weight: ['400', '500', '600', '700'],
- variable: '--font-barlow',
+ subsets: ["latin"],
+ weight: ["400", "500", "600", "700"],
+ variable: "--font-barlow",
});
-export default function Layout({ children }: LayoutProps<'/'>) {
+export default function Layout({ children }: LayoutProps<"/">) {
return (
) {
{children}
+
);
diff --git a/apps/docs/src/app/layout.tsx b/apps/docs/src/app/layout.tsx
index 614d5bd278..7dd006d841 100644
--- a/apps/docs/src/app/layout.tsx
+++ b/apps/docs/src/app/layout.tsx
@@ -1,30 +1,31 @@
-import { Provider } from '@/components/provider';
-import { getBaseUrl } from '@/lib/urls';
-import './global.css';
-import { Inter, Barlow } from 'next/font/google';
-import type { Metadata } from 'next';
-import type { ReactNode } from 'react';
-import Script from 'next/script';
+import { Provider } from "@/components/provider";
+import { getBaseUrl } from "@/lib/urls";
+import "./global.css";
+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'],
- variable: '--font-inter',
+ subsets: ["latin"],
+ variable: "--font-inter",
});
const barlow = Barlow({
- subsets: ['latin'],
- weight: ['400', '500', '600', '700'],
- variable: '--font-barlow',
+ subsets: ["latin"],
+ weight: ["400", "500", "600", "700"],
+ variable: "--font-barlow",
});
export const metadata: Metadata = {
metadataBase: new URL(getBaseUrl()),
title: {
- default: 'Prisma Documentation',
- template: '%s | Prisma Documentation',
+ default: "Prisma Documentation",
+ template: "%s | Prisma Documentation",
},
description:
- 'Documentation for Prisma ORM, Prisma Postgres, Prisma Accelerate, and the Prisma ecosystem. Build type-safe database applications with ease.',
+ "Documentation for Prisma ORM, Prisma Postgres, Prisma Accelerate, and the Prisma ecosystem. Build type-safe database applications with ease.",
};
export default function Layout({ children }: { children: ReactNode }) {
@@ -46,6 +47,7 @@ export default function Layout({ children }: { children: ReactNode }) {
src="https://cdn-cookieyes.com/client_data/96980f76df67ad5235fc3f0d/script.js"
id="cookieyes"
/>
+