Skip to content

Commit

Permalink
Added home page elements
Browse files Browse the repository at this point in the history
  • Loading branch information
John Davison committed Aug 6, 2023
1 parent 62b4027 commit c7ce116
Show file tree
Hide file tree
Showing 20 changed files with 1,033 additions and 158 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-particles": "^2.11.0",
"react-resize-detector": "^9.1.0",
"react-simple-animate": "^3.5.2",
"tailwindcss": "3.3.2",
"tailwindcss-classnames": "^3.1.0",
Expand Down
14 changes: 14 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/app/home.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.logo {
border-radius: 40px;
box-shadow: rgb(76 0 197 / 0.8) -5px -4px 17px -7px inset, 5px 5px 30px 10px rgb(1 1 1 / 1);
}

2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function RootLayout({
}) {
return (
<html lang="en" style={{ height: "100vh" }}>
<body className={inter.className} style={{ height: "100vh" }}>
<body className={inter.className} style={{ height: "100vh", overflow: "hidden" }}>
{children}
</body>
</html>
Expand Down
Loading

0 comments on commit c7ce116

Please sign in to comment.