2026-02-04 05:03:33 +03:00
|
|
|
import './globals.css';
|
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import { Inter } from 'next/font/google';
|
2026-02-08 18:59:02 +03:00
|
|
|
import BottomNav from '@/components/BottomNav';
|
2026-02-04 05:03:33 +03:00
|
|
|
|
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'Umbrix VPN',
|
|
|
|
|
description: 'Быстрый и безопасный VPN сервис',
|
2026-02-08 18:59:02 +03:00
|
|
|
themeColor: '#191f23',
|
|
|
|
|
viewport: {
|
|
|
|
|
width: 'device-width',
|
|
|
|
|
initialScale: 1,
|
|
|
|
|
maximumScale: 1,
|
|
|
|
|
userScalable: false,
|
|
|
|
|
},
|
2026-02-04 05:03:33 +03:00
|
|
|
openGraph: {
|
|
|
|
|
title: 'Umbrix VPN',
|
|
|
|
|
description: 'Быстрый и безопасный VPN сервис',
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: 'https://bolt.new/static/og_default.png',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: 'summary_large_image',
|
|
|
|
|
title: 'Umbrix VPN',
|
|
|
|
|
description: 'Быстрый и безопасный VPN сервис',
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: 'https://bolt.new/static/og_default.png',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<script src="https://telegram.org/js/telegram-web-app.js" async></script>
|
|
|
|
|
</head>
|
2026-02-08 18:59:02 +03:00
|
|
|
<body className={inter.className}>
|
|
|
|
|
{children}
|
|
|
|
|
<BottomNav />
|
|
|
|
|
</body>
|
2026-02-04 05:03:33 +03:00
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|