-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zhi Qin
committed
Nov 28, 2023
1 parent
3c4194c
commit b4d54fc
Showing
28 changed files
with
3,046 additions
and
469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,33 @@ | ||
import type { Metadata } from 'next' | ||
import { Inter } from 'next/font/google' | ||
import './globals.css' | ||
import { Providers } from './providers' | ||
import NavigationBar from '@/components/NavigationBar' | ||
import { Container } from '@chakra-ui/react' | ||
|
||
const inter = Inter({ subsets: ['latin'] }) | ||
|
||
export const metadata: Metadata = { | ||
title: 'Create Next App', | ||
description: 'Generated by create next app', | ||
title: 'ZHI QIN | Front End Developer', | ||
description: 'Generated by create next app', | ||
authors: {name: 'ZHI QIN', url: ''}, | ||
keywords: ['react', 'chakra-ui', 'nextjs'], | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
children: React.ReactNode | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}>{children}</body> | ||
</html> | ||
) | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}> | ||
<Providers> | ||
<NavigationBar/> | ||
<Container maxW={'4xl'}> | ||
{children} | ||
</Container> | ||
</Providers> | ||
</body> | ||
</html> | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.