@@ -50,4 +52,4 @@ const LandingPage = () => {
)
}
-export default LandingPage
\ No newline at end of file
+export default LandingPage;
diff --git a/src/app/components/Sponsors.tsx b/src/app/components/Sponsors.tsx
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ec569f0..af8de6a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,14 +3,35 @@ import FAQs from "./components/FAQs";
import LandingPage from "./components/LandingPage"
import Tracks from "./components/Tracks"
import Foreword from "./components/Foreword"
+import Sponsors from './components/Sponsors'
+import AnimatedSection from './components/AnimatedSection';
+import HorizontalScrollCarousel from './components/HorizontalScrollCarousel'
+import Judges from './components/Judges'
export default function Home() {
return (
-
+
+
+
+
-
-
+
+
+
+
+ {/*
+
+ */}
+
+
+
+
+
+
+
+
+
);
}
diff --git a/tsconfig.json b/tsconfig.json
index 7b28589..4f196a8 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -21,6 +21,6 @@
"@/*": ["./src/*"]
}
},
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/app/components/HorizontalScrollCarousel.jsx", "src/app/components/Judges.jsx"],
"exclude": ["node_modules"]
}