2024-06-22 04:50:53 +02:00
|
|
|
import Footer from '@/components/shared/Footer';
|
|
|
|
import Navbar from '@/components/shared/Navbar';
|
|
|
|
import { Metadata } from 'next';
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: 'Home - SVRJS',
|
|
|
|
};
|
2024-06-20 15:38:05 +02:00
|
|
|
|
|
|
|
export default function PageLayout({
|
2024-06-22 04:50:53 +02:00
|
|
|
children,
|
2024-06-20 15:38:05 +02:00
|
|
|
}: {
|
2024-06-22 04:50:53 +02:00
|
|
|
children: React.ReactNode;
|
2024-06-20 15:38:05 +02:00
|
|
|
}) {
|
2024-06-22 04:50:53 +02:00
|
|
|
return (
|
|
|
|
<main className="flex flex-col min-h-screen">
|
|
|
|
<Navbar />
|
|
|
|
<div className="flex-grow flex-1">{children}</div>
|
|
|
|
<Footer />
|
|
|
|
</main>
|
|
|
|
);
|
2024-06-20 15:38:05 +02:00
|
|
|
}
|