diff --git a/cansat/pages/about/index.tsx b/cansat/pages/about/index.tsx index 3c5449d..a1345ea 100644 --- a/cansat/pages/about/index.tsx +++ b/cansat/pages/about/index.tsx @@ -9,7 +9,7 @@ const list = [ { title: "Šimon", img: "/headshot/simon.jpg", - description: "Team Leader, Web Dev" + description: "Web Dev" }, { @@ -73,6 +73,7 @@ return ( + ); diff --git a/cansat/pages/index.tsx b/cansat/pages/index.tsx index e4c5033..b2c60d3 100644 --- a/cansat/pages/index.tsx +++ b/cansat/pages/index.tsx @@ -34,7 +34,7 @@ export default function IndexPage() { width={80} />
-

Who are we?

+

Who are we?

adlerka.sk

@@ -60,7 +60,7 @@ export default function IndexPage() { width={80} />
-

About CanSat

+

About CanSat

spaceoffice.sk/cansat

@@ -88,14 +88,14 @@ export default function IndexPage() { width={80} />
-

Our Achievements

+

Our Achievements

1st place in Cansat Slovakia 2024

-

Our student engineering team achieved first place at the 2024 CanSat Competition, trough our shared knowledge we designed and build a satellite capable of detecting and reporting forest fires from the troposphere.

-

With the help of our

+

Our student engineering team achieved first place at the 2024 CanSat Competition, trough our shared knowledge we designed and build a satellite capable of detecting and reporting forest fires from the troposphere.

+

Partner with us in our next innovative space project and showcase your company's commitment to fostering young talent in aerospace engineering.

diff --git a/cansat/pages/sponsor/index.tsx b/cansat/pages/sponsor/index.tsx index 2acde43..0517500 100644 --- a/cansat/pages/sponsor/index.tsx +++ b/cansat/pages/sponsor/index.tsx @@ -5,8 +5,28 @@ import {Card, CardHeader, CardBody, CardFooter} from "@heroui/card"; import {Divider} from "@heroui/divider"; import {Link} from "@heroui/link"; import {Button} from "@heroui/button"; +import {Tooltip} from "@heroui/tooltip"; +import {Image} from "@heroui/image"; +const list = [ + { + title: "Sensoneo", + img: "/sponsor/sensoneo.png", + link: "https://www.sensoneo.com", + }, + { + title: "Needronix", + img: "/sponsor/needronix.jpg", + link: "https://www.needronix.com", + + }, + { + title: "ZF", + img: "/sponsor/zf.png", + link: "https://www.zf.com", + }, +]; export default function SponsorPage() { @@ -58,6 +78,31 @@ export default function SponsorPage() { + + Our Sponsors +
+ {list.map((item, index) => ( + /* eslint-disable no-console */ + console.log("item pressed")}> + + + {item.title} + + + + {item.title} + + + ))} +
+ ); diff --git a/cansat/public/sponsor/needronix.jpg b/cansat/public/sponsor/needronix.jpg new file mode 100644 index 0000000..4cc55ed Binary files /dev/null and b/cansat/public/sponsor/needronix.jpg differ diff --git a/cansat/public/sponsor/sensoneo.png b/cansat/public/sponsor/sensoneo.png new file mode 100644 index 0000000..32eb2f8 Binary files /dev/null and b/cansat/public/sponsor/sensoneo.png differ diff --git a/cansat/public/sponsor/zf.png b/cansat/public/sponsor/zf.png new file mode 100644 index 0000000..8cebecf Binary files /dev/null and b/cansat/public/sponsor/zf.png differ