diff --git a/app/layout.tsx b/app/layout.tsx index e0c4231..7c60b2e 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,9 +1,6 @@ import type { Metadata } from 'next' -import { Inter } from 'next/font/google' import { ThemeProvider } from '@/components/theme/ThemeProvider' -const inter = Inter({ subsets: ['latin'] }) - export const metadata: Metadata = { title: 'LBMM RACS', description: 'Laboratory website of LBMM RACS', @@ -20,8 +17,8 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - - + + {children} diff --git a/app/sciencecommunication/page.tsx b/app/sciencecommunication/page.tsx new file mode 100644 index 0000000..360b28c --- /dev/null +++ b/app/sciencecommunication/page.tsx @@ -0,0 +1,18 @@ +'use client' + +import { Box } from '@mui/material' +import { Header } from '@/components/organisms/Header' +import { Footer } from '@/components/organisms/Footer' +import { ScienceCommunicationSection } from '@/components/templates/ScienceCommunicationSection' + +export default function ScienceCommunicationPage() { + return ( + +
+ + + +