oh lord. prettier eslint and all that
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
import { NavbarUserDropdown } from "../navbar/NavbarUserDropdown";
|
||||
import { NavbarMenu } from "../navbar/NavbarMenu";
|
||||
import { Container } from "../Container";
|
||||
import Link from "next/link";
|
||||
import Link from 'next/link';
|
||||
|
||||
type MainLayoutProps = {
|
||||
import { Container } from '../Container';
|
||||
import { NavbarMenu } from '../navbar/NavbarMenu';
|
||||
import { NavbarUserDropdown } from '../navbar/NavbarUserDropdown';
|
||||
|
||||
interface MainLayoutProps {
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export function MainLayout({ children, className }: MainLayoutProps) {
|
||||
return (
|
||||
@@ -14,7 +15,9 @@ export function MainLayout({ children, className }: MainLayoutProps) {
|
||||
<div className="h-2 w-full bg-gradient-to-r from-blue-900 to-purple-600"></div>
|
||||
<nav className="border-b border-border">
|
||||
<Container className="flex h-20 items-center justify-between ">
|
||||
<Link href="/" className="text-3xl">mixan</Link>
|
||||
<Link href="/" className="text-3xl">
|
||||
mixan
|
||||
</Link>
|
||||
<div className="flex items-center gap-8">
|
||||
<NavbarMenu />
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user