17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
|
|
import "../globals.css";
|
||
|
|
|
||
|
|
import Link from "next/link";
|
||
|
|
import AnimatedLink from "@/components/animatedLink";
|
||
|
|
import Image from "next/image";
|
||
|
|
|
||
|
|
import MainHeader from "@/components/header/main";
|
||
|
|
import MainFooter from "@/components/footer/main";
|
||
|
|
|
||
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<div className="text-base">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|