Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a header with marketing links for Axilla and axgen #10

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import '@/styles/globals.css';
import Image from 'next/image';
import Link from 'next/link';
import { Metadata } from 'next';

import { siteConfig } from '@/config/site';
Expand Down Expand Up @@ -40,6 +42,25 @@ export default function RootLayout({ children }: RootLayoutProps) {
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
<ConfigProvider>
<main className="flex h-screen flex-col">
<div className="flex items-center justify-between border border-border bg-background px-4 py-2">
<Image
src="/axilla-logo-text-white.png"
height={30}
width={90}
alt="Axilla logo"
/>
<Link href="https://github.com/axilla-io/axgen">
<div className="flex items-center gap-4">
<p className="font-mono">UI demo made with axgen</p>
<Image
src="/github-mark-white.png"
width={32}
height={32}
alt="GitHub logo"
/>
</div>
</Link>
</div>
<div className="flex flex-1">
<div className="flex w-[400px] overflow-y-auto">
<Sidebar />
Expand Down
Binary file added public/axilla-logo-text-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/github-mark-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.