Skip to content

Commit

Permalink
Everywhere: Rework front page
Browse files Browse the repository at this point in the history
  • Loading branch information
mguinhos committed Feb 21, 2024
1 parent a24b27a commit 66b0822
Show file tree
Hide file tree
Showing 16 changed files with 519 additions and 32 deletions.
55 changes: 55 additions & 0 deletions public/blueprint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/game_of_life.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions public/heart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/particles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/react_calculator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions public/semaphore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@font-face {
font-family: pixelify_sans;
src: url(pixelify_sans.ttf);
}

body {
font-family: pixelify_sans;
}

.flicker {
animation: flickerBubble 1s;
}


@keyframes flickerBubble {
0% {
transform: translateY(0em);
}
30% {
transform: translateY(-2em);
}
50% {
transform: translateY(0em);
}
}


.skill, .experiment {

transition: all 0.25s ease-in-out;
}

.skill:hover {
transform: translateY(-5mm);
}

.experiment:hover {
transform: translateY(-5mm);
}

canvas {
background-color: transparent;
}
10 changes: 8 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ import '@fontsource/roboto/300.css';
import '@fontsource/roboto/400.css';
import '@fontsource/roboto/500.css';
import '@fontsource/roboto/700.css';
import './globals.css';

import Navbar from "../components/navbar";
import Footer from "@/components/footer";

const DARK_THEME = createTheme({
palette: {
mode: "dark",
},
typography: {
fontFamily: 'pixelify_sans'
}
});

export default function RootLayout({ children }: { children: React.ReactNode }) {
Expand All @@ -24,9 +29,10 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<Box>
<Navbar />
<Box style={{ display: 'flex', flexDirection: 'column', minHeight: '100vh' }}>
<Navbar/>
{children}
<Footer/>
</Box>
</body>
</ThemeProvider>
Expand Down
Loading

0 comments on commit 66b0822

Please sign in to comment.