started adding its figma design
This commit is contained in:
2923
package-lock.json
generated
2923
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^4.2.6",
|
"astro": "^4.2.6",
|
||||||
|
"npx": "^3.0.0",
|
||||||
"sass": "^1.70.0"
|
"sass": "^1.70.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
0
src/components/Navbar.astro
Normal file
0
src/components/Navbar.astro
Normal file
@@ -20,8 +20,6 @@ import "../styles/main.scss";
|
|||||||
<title>vaporvee's Website | {title}</title>
|
<title>vaporvee's Website | {title}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="content">
|
<slot />
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@@ -1,11 +1,16 @@
|
|||||||
---
|
---
|
||||||
import Layout from "../layouts/Layout.astro";
|
import Layout from "../layouts/Layout.astro";
|
||||||
|
import "../styles/home.scss";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout
|
<Layout
|
||||||
title="Home"
|
title="Home"
|
||||||
description="This is my personal website with my projects, docs and other useful stuff."
|
description="This is my personal website with my projects, docs and other useful stuff."
|
||||||
>
|
>
|
||||||
<h1>Home</h1>
|
<div class="home-title-box">
|
||||||
<p>Under construction ;)</p>
|
<h1 class="home-title" style="font-size: 6.5vw;">vaporvee</h1>
|
||||||
|
<h2 class="home-title" style="font-size: 2vw; margin-top: -25px;">
|
||||||
|
Making video games
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
11
src/styles/home.scss
Normal file
11
src/styles/home.scss
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
.home-title-box {
|
||||||
|
margin-top: 16.6vh;
|
||||||
|
margin-left: 11.3vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.home-title {
|
||||||
|
margin: 0;
|
||||||
|
color: #FFF;
|
||||||
|
font-family: "Tanker-Regular";
|
||||||
|
font-size: 128px;
|
||||||
|
}
|
Reference in New Issue
Block a user