From d31ff3496e07a4194a3e5e7d63d977f6254047ab Mon Sep 17 00:00:00 2001 From: Jash Khunt Date: Mon, 25 May 2026 22:30:08 +0530 Subject: [PATCH] fix(layout): remove boxed page constraints and restore full-width viewport compatibility --- src/app/layout.jsx | 9 +- src/app/page.jsx | 386 ++++++++++++++-------------- src/components/shared/Container.jsx | 2 +- 3 files changed, 197 insertions(+), 200 deletions(-) diff --git a/src/app/layout.jsx b/src/app/layout.jsx index fb8211f3..d7419202 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -60,12 +60,7 @@ export default function RootLayout({ children }) { href={`${process.env.NEXT_PUBLIC_SITE_URL}/rss/feed.json`} /> - -
-
-
-
-
+
{children}
@@ -74,4 +69,4 @@ export default function RootLayout({ children }) { ) -} +} \ No newline at end of file diff --git a/src/app/page.jsx b/src/app/page.jsx index 39b204c2..6545485c 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -45,211 +45,213 @@ export default function Home() {
{/* Main Content */} -
- - AOSSIE Logo - -
-
- - We Innovate
We Educate -
- - We are an Australian not-for-profit umbrella organization for - open-source projects. We believe the open-source philosophy - provides a resource-efficient channel to transfer knowledge and - achieve innovation and education. - - - +
+ + AOSSIE Logo + +
+
+ - - - We Educate + + - - - + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - Learn More About Us + + + + + + Learn More About Us + - - - - + + + +
- - - {/* Projects Section */} - -
-
-
- -
-
-

- Our Projects -

-
-
+ -

- Our Projects span a wide range of themes, such as: - open money; decentralized economic and financial stability; - trust; education; sustainability; communication; governance and management; - and user-empowering sunny tools. -

-
-
- -
- {randomProjects.map((project) => ( -
- -
- ))} -
-
+ {/* Projects Section */} + +
+
+
+ +
+
+

+ Our Projects +

+
-
- - - - + Our Projects span a wide range of themes, such as: + open money; decentralized economic and financial stability; + trust; education; sustainability; communication; governance and management; + and user-empowering sunny tools. +

+
+
+ +
+ {randomProjects.map((project) => ( +
+ - - - - View All Projects - - -
- +
+ ))} +
+ +
+
+ + + + + + + + View All Projects + + +
+
@@ -257,4 +259,4 @@ export default function Home() { ) -} +} \ No newline at end of file diff --git a/src/components/shared/Container.jsx b/src/components/shared/Container.jsx index 8cbedc02..6667258b 100644 --- a/src/components/shared/Container.jsx +++ b/src/components/shared/Container.jsx @@ -7,7 +7,7 @@ const OuterContainer = forwardRef(function OuterContainer( ) { return (
-
{children}
+
{children}
) })