Update demo

This commit is contained in:
Korbs 2024-11-30 18:11:07 -05:00
parent 769df09ee4
commit 38b4f49264
5 changed files with 33 additions and 6 deletions

View file

@ -9,6 +9,7 @@ const {
// Components
import Header from '@components/Header.astro'
import Info from '@components/Info.astro'
import Switcher from '@components/Switcher.astro'
---
<html>
<head>
@ -17,6 +18,10 @@ import Info from '@components/Info.astro'
</head>
<body>
<Header/>
<br/>
<Switcher/>
<br/>
<br/>
<slot/>
<Info Title={Title} Description={Description}>
<div class="info-section"><slot name="info"></slot></div>
@ -27,13 +32,23 @@ import Info from '@components/Info.astro'
<style is:global is:inline>
body {
background: #010101;
color: white;
background: white;
color: black;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
max-width: 1200px;
&::before {
content: "";
background: #010101;
width: 100%;
height: 600px;
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
}
a {
color: white;
color: black;
}
}
.video-container {