generated from nhcarrigan/template
Compare commits
3 Commits
main
...
93a6cf952d
| Author | SHA1 | Date | |
|---|---|---|---|
|
93a6cf952d
|
|||
|
d9644d3a57
|
|||
|
71f184f696
|
+8
-5
@@ -2,10 +2,6 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
* {
|
|
||||||
font-family: "Vampyr", monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@apply text-4xl;
|
@apply text-4xl;
|
||||||
}
|
}
|
||||||
@@ -38,8 +34,15 @@ blockquote p {
|
|||||||
@apply text-center;
|
@apply text-center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-dark blockquote,
|
||||||
|
.is-dark blockquote p {
|
||||||
|
color: var(--foreground);
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border: 2px dotted;
|
border-left: 5px solid var(--accent);
|
||||||
|
box-shadow: inset 4px 0 10px -4px var(--accent);
|
||||||
|
padding-left: 1rem;
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+9
-10
@@ -3,16 +3,12 @@
|
|||||||
* @license Naomi's Public License
|
* @license Naomi's Public License
|
||||||
* @author Naomi Carrigan
|
* @author Naomi Carrigan
|
||||||
*/
|
*/
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import Script from "next/script";
|
import Script from "next/script";
|
||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import type { JSX, ReactNode } from "react";
|
import type { JSX, ReactNode } from "react";
|
||||||
// eslint-disable-next-line import/no-unassigned-import -- Import global styles.
|
// eslint-disable-next-line import/no-unassigned-import -- Import global styles.
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
// eslint-disable-next-line new-cap -- This is a function call.
|
|
||||||
const inter = Inter({ subsets: [ "latin" ] });
|
|
||||||
|
|
||||||
const metadata: Metadata = {
|
const metadata: Metadata = {
|
||||||
description: "The personal musings of a transfem software engineer.",
|
description: "The personal musings of a transfem software engineer.",
|
||||||
openGraph: {
|
openGraph: {
|
||||||
@@ -40,6 +36,14 @@ const RootLayout = ({
|
|||||||
}>): JSX.Element => {
|
}>): JSX.Element => {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<link href="https://cdn.nhcarrigan.com/logo.png" rel="icon" sizes="any" />
|
||||||
|
<link
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css"
|
||||||
|
precedence="default"
|
||||||
|
rel="stylesheet"
|
||||||
|
></link>
|
||||||
|
</head>
|
||||||
<Script
|
<Script
|
||||||
async={true}
|
async={true}
|
||||||
defer={true}
|
defer={true}
|
||||||
@@ -47,12 +51,7 @@ const RootLayout = ({
|
|||||||
strategy={"afterInteractive"}
|
strategy={"afterInteractive"}
|
||||||
type="text/javascript"
|
type="text/javascript"
|
||||||
></Script>
|
></Script>
|
||||||
<link href="https://cdn.nhcarrigan.com/logo.png" rel="icon" sizes="any" />
|
<body>{children}</body>
|
||||||
<link
|
|
||||||
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css"
|
|
||||||
rel="stylesheet"
|
|
||||||
></link>
|
|
||||||
<body className={inter.className}>{children}</body>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user