-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update sort order, use pnpm, update styles * update README * update workflow
- Loading branch information
Showing
9 changed files
with
4,700 additions
and
5,652 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 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 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 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,3 +1,29 @@ | ||
import { CSSProperties } from 'react'; | ||
import Image from 'next/image'; | ||
import BPLogo from '@/assets/images/bp-logo.png'; | ||
|
||
export default function Home() { | ||
return <main>Hello, world!</main>; | ||
return ( | ||
<main style={mainStyles}> | ||
<Image style={imageStyles} src={BPLogo} alt="Blueprint Logo" /> | ||
<p>Open up app/page.tsx to get started!</p> | ||
</main> | ||
); | ||
} | ||
|
||
// CSS styles | ||
|
||
const mainStyles: CSSProperties = { | ||
width: '100%', | ||
height: '100vh', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
}; | ||
|
||
const imageStyles: CSSProperties = { | ||
width: '80px', | ||
height: '80px', | ||
marginBottom: '0.5rem', | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
declare module '*.png'; | ||
declare module '*.svg'; | ||
declare module '*.jpeg'; | ||
declare module '*.jpg'; | ||
declare module '*.webp'; |
Oops, something went wrong.