unused placeholder

This commit is contained in:
nelle 2024-07-04 11:32:31 -06:00
parent 4edf616a73
commit c75f4c9479
2 changed files with 1 additions and 7 deletions

View file

@ -2,18 +2,12 @@
import Header from "../components/Header.astro";
import Head from "../components/Head.astro";
import Footer from "../components/Footer.astro";
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<Head />
<title>{title}</title>
</head>
<body onload="onload()" id="body">
<Header />

View file

@ -3,6 +3,6 @@ import Layout from "../layouts/Layout.astro";
import Card from "../components/Card.astro";
---
<Layout title="LimePot - ">
<Layout>
<main></main>
</Layout>