next preview UAT fixture

This commit is contained in:
Jogeswar Reddy Kupuli
2026-08-26 12:38:44 +01:00
commit e7b35d78dd
6 changed files with 540 additions and 0 deletions

7
app/layout.tsx Normal file
View File

@@ -0,0 +1,7 @@
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}