This commit is contained in:
andrzej 2024-06-20 12:54:56 +02:00
parent 782ccb76f5
commit 96db18580e
2 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import { Toaster } from "@/components/ui/toaster";
import "./tailwind.css"; import "./tailwind.css";
import Link from "next/link"; import Link from "next/link";
import { ComponentProps } from "react"; import { ComponentProps } from "react";
import { Send } from "lucide-react";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });
@ -30,8 +31,8 @@ export default function RootLayout({
<div id="layout-container" className="flex p-4"> <div id="layout-container" className="flex p-4">
<div id="sidebar" > <div id="sidebar" >
<header className="mb-6"> <header className="mb-6">
<h1 className="font-black text-6xl antialiased">SubMan</h1> <h1 className="font-black text-6xl antialiased inline">SubMan</h1> <Send className="inline" size={"3rem"} />
<p className="font-bold text-xl antialiased">The self-hosted <br /> literary submission tracker.</p> <p className="font-bold text-xl antialiased">The self-hosted literary<br /> submission tracker.</p>
</header> </header>
<NavLink href="/story">STORIES</NavLink> <NavLink href="/story">STORIES</NavLink>
<NavLink href="/publication">PUBLICATIONS</NavLink> <NavLink href="/publication">PUBLICATIONS</NavLink>

View File

@ -736,6 +736,10 @@ body {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
.inline {
display: inline;
}
.flex { .flex {
display: flex; display: flex;
} }