Basic design refacctorization
This commit is contained in:
@ -8,7 +8,7 @@ const { meta = {} } = Astro.props;
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="motion-safe:scroll-smooth font-light 2xl:text-[20px]">
|
||||
<html lang="en" class="motion-safe:scroll-smooth 2xl:text-[20px]">
|
||||
<head>
|
||||
<MetaTags {...meta} />
|
||||
</head>
|
||||
|
@ -2,11 +2,13 @@
|
||||
import Layout from '~/layouts/BaseLayout.astro';
|
||||
import Header from '~/components/widgets/Header.astro';
|
||||
import Footer from '~/components/widgets/Footer.astro';
|
||||
import Banner from '~/components/widgets/Banner.astro';
|
||||
|
||||
const { meta } = Astro.props;
|
||||
---
|
||||
|
||||
<Layout {meta}>
|
||||
<Banner />
|
||||
<Header />
|
||||
<main>
|
||||
<slot />
|
||||
|
Reference in New Issue
Block a user