Skip to content

Commit 7b5c7db

Browse files
committed
.
1 parent 742a004 commit 7b5c7db

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

app/(default)/(project)/FreeTacMan/layout.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ export default function RootLayout({
2424
children: React.ReactNode;
2525
}>) {
2626
return (
27-
<html lang="en" className={inter.className}>
28-
<body id="#">
27+
<div>
2928
<header>
3029
<div className="fixed right-0 bottom-0 m-6 z-20">
3130
<Link
@@ -57,7 +56,6 @@ export default function RootLayout({
5756
</header>
5857

5958
{children}
60-
</body>
61-
</html>
59+
</div>
6260
);
6361
}

app/(default)/(project)/FreeTacMan/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const policy_rollouts: { id: string; title: string; color: string }[] = [
7070

7171
export default function Home() {
7272
return (
73-
<main className="w-full overflow-hidden">
73+
<div className="w-full overflow-hidden">
7474
{/* Landing Section with Gray Background */}
7575
<div className="w-full min-h-screen flex flex-col items-center px-4 md:px-6 bg-[#eaeaea]">
7676
<div className="flex flex-col py-10 md:py-20 gap-4 md:gap-6 w-full h-full max-w-[1792px] justify-around items-center">
@@ -1188,6 +1188,6 @@ export default function Home() {
11881188
</div>
11891189
</div>
11901190

1191-
</main>
1191+
</div>
11921192
);
11931193
}

0 commit comments

Comments
 (0)