Skip to content

Commit

Permalink
adding in some edits to the ux
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptAlchemist committed Jun 26, 2024
1 parent affb029 commit fa2b9e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Layout = ({ preview, children }: Props) => {
<div className="flex flex-col w-full">
{/*<Alert preview={preview} />*/}
<Navbar />
<main className='h-screen'>{children}</main>
<main className=''>{children}</main>
</div>
{/*<Footer />*/}
</>
Expand Down
6 changes: 3 additions & 3 deletions pages/about-me/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export default function AboutMe() {
return (
<Container>
<div className='flex flex-col sm:flex-row'>
<div className='flex text-center items-center justify-center h-96 flex-1'>
<div className='flex text-center items-center justify-center flex-1 my-20'>
<p>Hello {'&'} welcome to my website</p>
</div>
<div className='relative flex-1 ml-auto w-full h-96 sm:w-1/2'>
<Canvas className='h-96' camera={{ position: [0, 0, 13], fov: 25 }}>
<div className='relative flex-1 ml-auto w-full sm:w-1/2 h-screen'>
<Canvas className='' camera={{ position: [0, 0, 13], fov: 25 }}>
<ambientLight intensity={Math.PI} />
<Physics interpolate gravity={[0, -40, 0]} timeStep={1 / 60}>
<Band />
Expand Down

0 comments on commit fa2b9e4

Please sign in to comment.