2025-03-26 15:39:25 +03:00
|
|
|
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 (
|
2025-03-28 17:08:50 +03:00
|
|
|
<div className="m-auto text-base 2xl:w-3xl xl:w-3xl md:w-full">
|
2025-03-26 15:39:25 +03:00
|
|
|
{children}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|