Mark index page as home page

This commit is contained in:
Maciej Pędzich 2023-05-02 09:22:33 +02:00
parent c0180cebb2
commit 7871c578ad

View File

@ -2,16 +2,16 @@
import BaseHead from '../components/BaseHead.astro';
import Header from '../components/Header.astro';
import Footer from '../components/Footer.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
import { SITE_DESCRIPTION } from '../consts';
---
<!DOCTYPE html>
<html lang="en">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<BaseHead title="home" description={SITE_DESCRIPTION} />
</head>
<body>
<Header title={SITE_TITLE} />
<Header />
<main>
<section>
<h2>Welcome to my website</h2>