Skip to content

Commit

Permalink
fix: deployment error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsp45 committed Feb 16, 2024
1 parent cdef9be commit ba9a492
Showing 1 changed file with 35 additions and 4 deletions.
39 changes: 35 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,39 @@
---
import "@fontsource-variable/inter";
import Footer from "~/components/footer.astro";
import Header from "~/components/header.astro";
import Intro from "~/components/intro.astro";
import IndexLayout from "~/layouts/IndexLayout.astro";
import Splash from "~/components/splash.astro";
import "~/styles/index.css";
const { generator, site } = Astro;
const description = "The best place to grow ideas from the ground";
---

<IndexLayout>
<Intro />
</IndexLayout>
<!doctype html>
<html lang="en" class="h-full motion-safe:scroll-smooth" data-theme="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="/favicon.png" type="image/svg+xml" />
<meta name="generator" content={generator} />

<title>Hackathon BugsByte</title>
<meta name="description" content={description} />

<!-- social media -->
<meta property="og:title" content="Hackathon BugsByte" />
<meta property="og:type" content="website" />
<meta property="og:description" content={description} />
</head>
<body
class="h-screen overflow-x-hidden bg-black text-default text-base selection:bg-secondary selection:text-white"
>
<Header />
<Splash />
<div class="space-y-24 px-8 py-32">
<Intro />
</div>
<Footer />
</body>
</html>

0 comments on commit ba9a492

Please sign in to comment.