First commit

This commit is contained in:
2026-06-01 23:16:10 +02:00
commit 1ea182f68d
56 changed files with 42848 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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>
);
}