Files
HouseOrg/app/+html.tsx
T
2026-06-01 23:16:10 +02:00

23 lines
912 B
TypeScript

import { ScrollViewStyleReset } from 'expo-router/html';
import React from 'react';
export default function Root({ children }: { children: React.ReactNode }) {
return (
<html lang="de">
<head>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#2D6A4F" />
<meta name="description" content="Gemeinsam den Haushalt organisieren" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="HouseOrg" />
<link rel="apple-touch-icon" href="/assets/icon.png" />
<ScrollViewStyleReset />
</head>
<body>{children}</body>
</html>
);
}