diff --git a/apps/site/src/app/(home)/page.tsx b/apps/site/src/app/(home)/page.tsx
index 2a5e136b..f6dca9db 100644
--- a/apps/site/src/app/(home)/page.tsx
+++ b/apps/site/src/app/(home)/page.tsx
@@ -11,8 +11,7 @@ export default function Home() {
) : (
<>
- {/* @ts-expect-error Async Server Component */}
-
+
>
);
}
diff --git a/apps/site/src/app/(home)/sections/FAQ/FAQ.module.scss b/apps/site/src/app/(home)/sections/FAQ/FAQ.module.scss
index be3e7283..8f85f208 100644
--- a/apps/site/src/app/(home)/sections/FAQ/FAQ.module.scss
+++ b/apps/site/src/app/(home)/sections/FAQ/FAQ.module.scss
@@ -1,37 +1,11 @@
-.faq {
- position: relative;
- display: flex;
- flex-direction: column;
- width: 80%;
-
- padding-bottom: 1.875rem;
-}
-
.container {
- padding-top: 6rem;
- padding-bottom: 6rem;
- display: flex;
- justify-content: center;
background-image: url("~@/assets/backgrounds/faq-background-mobile.svg");
- background-position: center top;
- background-size: cover;
- background-repeat: no-repeat;
}
.title {
- color: #fffce2;
- margin-top: 1.5rem;
- margin-bottom: 1.5rem;
- font-size: 2.25rem;
- text-align: center;
text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
}
-.body {
- margin-left: 40px;
- margin-right: 10px;
-}
-
@media (min-width: 640px) {
.container {
background-image: url("~@/assets/backgrounds/faq-background.svg");
diff --git a/apps/site/src/app/(home)/sections/FAQ/FAQ.tsx b/apps/site/src/app/(home)/sections/FAQ/FAQ.tsx
index f603c45d..191f39b5 100644
--- a/apps/site/src/app/(home)/sections/FAQ/FAQ.tsx
+++ b/apps/site/src/app/(home)/sections/FAQ/FAQ.tsx
@@ -13,10 +13,10 @@ const FAQ = async () => {
}));
return (
-