+
{sponsors.map((company, index) => (
-
+ ))}
+
+
+
+ {partners.map((company, index) => (
+
))}
diff --git a/src/app/schedule/page.tsx b/src/app/schedule/page.tsx
index 8332ece..4aa5cb9 100644
--- a/src/app/schedule/page.tsx
+++ b/src/app/schedule/page.tsx
@@ -3,21 +3,25 @@ import { WavyPattern } from '@/components/WavyPattern'
export const revalidate = 10
export default async function calendar() {
- const startDate = new Date('10/07/2023 06:00:00')
+ const startDate = new Date('10/07/2023 06:00:00')
const endDate = new Date('10/08/2023 18:00:00')
const events = await getEvents()
- return (
-
-
-
+ return (
+
+
+
Schedule
-
+
-
- )
-}
\ No newline at end of file
+
+
+ )
+}
diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx
index e60524a..fc7025f 100644
--- a/src/components/Button/index.tsx
+++ b/src/components/Button/index.tsx
@@ -9,19 +9,29 @@ const getButtonClassNames = () =>
twJoin(
'flex flex-row gap-4 justify-center items-center',
'py-3 px-5 mb-2 md:mb-0 md:mr-2',
- 'bg-hackuta-blue shadow-hackuta text-white font-saotorpes tracking-wider te',
+ 'bg-hackuta-blue shadow-hackuta text-white font-heading tracking-wider te',
'cursor-pointer select-none',
'disabled:bg-[gray] disabled:cursor-not-allowed',
)
interface StarProps extends SVGProps {
- fillColor: string,
+ fillColor: string
}
const Star = ({ fillColor, ...props }: StarProps) => {
return (
-