Merge pull request #6 from experimental-celestial-laboratories/hri7566/xcl-36-mobilize

Hri7566/xcl 36 mobilize
This commit is contained in:
Hri7566 2023-09-14 01:07:30 -04:00 committed by GitHub
commit c868ccae2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 6 deletions

View File

@ -0,0 +1,10 @@
import Link from "next/link";
import { Logo } from "./Logo";
export const CornerLogo = () => {
return (
<Link className="absolute left-0 top-0 hidden sm:flex" href="/">
<Logo />
</Link>
);
};

View File

@ -2,14 +2,13 @@ import Link from "next/link";
import { Logo } from "../components/Logo";
import { NavigationBar } from "../components/NavigationBar";
import { PageContentBox } from "~/components/PageContentBox";
import { CornerLogo } from "~/components/CornerLogo";
export default function About() {
return (
<div className="bg-black/60">
<div className="flex min-h-screen flex-col items-center justify-center bg-orange-800/40">
<Link className="absolute left-0 top-0" href="/">
<Logo />
</Link>
<CornerLogo />
<div className="absolute right-0 top-0">
<NavigationBar />
</div>

View File

@ -3,14 +3,13 @@ import { Logo } from "../components/Logo";
import { NavigationBar } from "~/components/NavigationBar";
import { PageContentBox } from "~/components/PageContentBox";
import { EmployeeList } from "~/components/EmployeeList";
import { CornerLogo } from "~/components/CornerLogo";
export default function Team() {
return (
<div className="bg-black/60">
<div className="flex min-h-screen flex-col items-center justify-center bg-orange-800/40">
<Link className="absolute left-0 top-0" href="/">
<Logo />
</Link>
<CornerLogo />
<div className="absolute right-0 top-0">
<NavigationBar />
</div>