Skip to content

Commit

Permalink
portfolio upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhi Qin committed Nov 28, 2023
1 parent 3c4194c commit b4d54fc
Show file tree
Hide file tree
Showing 28 changed files with 3,046 additions and 469 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./out
path: ./app

# Deployment job
deploy:
Expand Down
107 changes: 0 additions & 107 deletions app/globals.css

This file was deleted.

31 changes: 21 additions & 10 deletions app/layout.tsx
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>
)
}
229 changes: 0 additions & 229 deletions app/page.module.css

This file was deleted.

Loading

0 comments on commit b4d54fc

Please sign in to comment.