/** * This file is part of Sharenet. * * Sharenet is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. * * You may obtain a copy of the license at: * https://creativecommons.org/licenses/by-nc-sa/4.0/ * * Copyright (c) 2024 Continuist */ import type { Metadata, Viewport } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Link from "next/link"; import { MobileNav } from "@/components/mobile-nav"; import { AuthProvider } from "@/lib/auth/context"; import { AuthNav } from "@/components/auth/auth-nav"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Sharenet Admin", description: "Admin interface for Sharenet", }; export const viewport: Viewport = { width: 'device-width', initialScale: 1, maximumScale: 1, userScalable: false, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }