Try building
This commit is contained in:
@@ -1,27 +1,29 @@
|
||||
---
|
||||
import Header from "../components/Header.astro";
|
||||
import Footer from "../components/Footer.astro";
|
||||
import { siteConfig } from "../config/site";
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
const {
|
||||
title = "Atash Consulting",
|
||||
description = "Technical Excellence with a Human Touch",
|
||||
} = Astro.props;
|
||||
const { title = siteConfig.name, description = siteConfig.description } =
|
||||
Astro.props;
|
||||
|
||||
const metaTitle =
|
||||
title === siteConfig.name ? title : `${title} | ${siteConfig.name}`;
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" data-theme="coffee">
|
||||
<html lang="en" data-theme="sunset">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<meta name="description" content={description} />
|
||||
<title>{title}</title>
|
||||
<title>{metaTitle}</title>
|
||||
<style>
|
||||
.skip-to-content {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user