Merge pull request #10 from ghall89/dev

dev
This commit is contained in:
Graham Hall
2023-01-07 19:23:32 -05:00
committed by GitHub
3 changed files with 9 additions and 3 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ const { title, date } = Astro.props;
<div class="blog-header"> <div class="blog-header">
<h2>{title}</h2> <h2>{title}</h2>
<h4> <h3 style={{ fontSize: "1.1rem" }}>
{`🗓️ ${formatInTimeZone(new Date(date), "America/New_York", "MMM do, y")}`} {`🗓️ ${formatInTimeZone(new Date(date), "America/New_York", "MMM do, y")}`}
</h4> </h3>
</div> </div>
+4
View File
@@ -20,6 +20,10 @@ const title = Astro.props.frontmatter
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<meta
name="description"
content="A personal blog about life, gaming, tech, and whatever else I feel like writing about."
/>
<title>{`ghall.blog - ${title}`}</title> <title>{`ghall.blog - ${title}`}</title>
</head> </head>
<body class="container"> <body class="container">
+3 -1
View File
@@ -3,6 +3,7 @@
src: url(./fonts/Manrope-Regular.ttf) format("truetype"); src: url(./fonts/Manrope-Regular.ttf) format("truetype");
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-display: swap;
} }
@font-face { @font-face {
@@ -10,13 +11,14 @@
src: url(./fonts/Manrope-Bold.ttf) format("truetype"); src: url(./fonts/Manrope-Bold.ttf) format("truetype");
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
font-display: swap;
} }
:root { :root {
--blue: #3274ce; --blue: #3274ce;
--red: #ce3446; --red: #ce3446;
--orange: #e56045; --orange: #e56045;
--text: #757575; --text: #444444;
--background: white; --background: white;
} }