rsnext/examples/with-grafbase/app/layout.tsx
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00

85 lines
2.4 KiB
TypeScript

import "./globals.css";
import Link from "next/link";
import { graphql } from "../gql";
import { grafbase } from "../lib/grafbase";
import type { Metadata } from "next";
export const revalidate = 0;
export const metadata: Metadata = {
title: "Grafbase + Next.js",
description: "Grafbase + Next.js",
};
const GetAllPostsDocument = graphql(/* GraphQL */ `
query GetAllPosts($first: Int!) {
postCollection(first: $first) {
edges {
node {
id
title
slug
}
}
}
}
`);
export default async function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
const { postCollection } = await grafbase.request(GetAllPostsDocument, {
first: 50,
});
return (
<html lang="en">
<body>
<div className="flex">
<nav className="w-[350px] flex flex-col justify-between h-screen overflow-y-auto bg-gray-100">
<ul className="p-8 space-y-2">
<li className="mb-6">
<Link
href="/"
className="py-2 rounded-md shadow-sm block px-3 text-gray-600 hover:text-gray-800 transition bg-white"
>
Home
</Link>
</li>
<li className="px-3 py-2 uppercase text-xs text-gray-800 font-semibold">
Posts
</li>
{postCollection?.edges?.map((edge) =>
edge?.node ? (
<li key={edge.node.id}>
<Link
href={`/posts/${edge.node.slug}`}
className="py-2 rounded-md shadow-sm block px-3 text-gray-600 hover:text-gray-800 transition bg-white"
>
{edge.node.title}
</Link>
</li>
) : null,
)}
<li>
<Link
href="/posts/not-found"
className="py-2 rounded-md shadow-sm block px-3 text-gray-600 hover:text-gray-800 transition bg-white"
>
Show 404 page
</Link>
</li>
</ul>
</nav>
<main className="flex-1 p-6 md:p-24">
<div className="max-w-3xl mx-auto">
<div className="prose max-w-none">{children}</div>
</div>
</main>
</div>
</body>
</html>
);
}