feat(landing-page): social links
This commit is contained in:
parent
065b84f93c
commit
17d1487913
3 changed files with 4 additions and 9 deletions
|
@ -5,17 +5,12 @@ import ThemeSwitcher from "~/components/theme-switcher.astro";
|
||||||
const socials = [
|
const socials = [
|
||||||
{
|
{
|
||||||
name: "GitHub",
|
name: "GitHub",
|
||||||
url: "#",
|
url: "https://github.com/ayoayco/astro-reactive-library",
|
||||||
icon: "fa-brands:github-alt",
|
icon: "fa-brands:github-alt",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "Discord",
|
|
||||||
url: "#",
|
|
||||||
icon: "fa-brands:discord",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Twitter",
|
name: "Twitter",
|
||||||
url: "#",
|
url: "https://twitter.com/astroreactive",
|
||||||
icon: "fa-brands:twitter",
|
icon: "fa-brands:twitter",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const COUNT = 800;
|
const COUNT = 800;
|
||||||
const SPEED = 0.1;
|
const SPEED = 0.3;
|
||||||
|
|
||||||
class Star {
|
class Star {
|
||||||
x: number;
|
x: number;
|
||||||
|
|
|
@ -77,7 +77,7 @@ const description =
|
||||||
<Header />
|
<Header />
|
||||||
<Splash />
|
<Splash />
|
||||||
<div class="h-screen">
|
<div class="h-screen">
|
||||||
<h1>This section is added just to test the sticky header</h1>
|
<h1>This section is added just to test the sticky header :)</h1>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue