added OUR SPONSORS + links
This commit is contained in:
@@ -9,7 +9,7 @@ const list = [
|
|||||||
{
|
{
|
||||||
title: "Šimon",
|
title: "Šimon",
|
||||||
img: "/headshot/simon.jpg",
|
img: "/headshot/simon.jpg",
|
||||||
description: "Team Leader, Web Dev"
|
description: "Web Dev"
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -73,6 +73,7 @@ return (
|
|||||||
</div>
|
</div>
|
||||||
<Divider />
|
<Divider />
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</DefaultLayout>
|
</DefaultLayout>
|
||||||
);
|
);
|
||||||
|
@@ -34,7 +34,7 @@ export default function IndexPage() {
|
|||||||
width={80}
|
width={80}
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<p className="text-xl">Who are we?</p>
|
<p className="text-xl font-bold">Who are we?</p>
|
||||||
<p className="text-small text-default-500">adlerka.sk</p>
|
<p className="text-small text-default-500">adlerka.sk</p>
|
||||||
</div>
|
</div>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
@@ -60,7 +60,7 @@ export default function IndexPage() {
|
|||||||
width={80}
|
width={80}
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<p className="text-xl">About CanSat</p>
|
<p className="text-xl font-bold">About CanSat</p>
|
||||||
<p className="text-small text-default-500">spaceoffice.sk/cansat</p>
|
<p className="text-small text-default-500">spaceoffice.sk/cansat</p>
|
||||||
</div>
|
</div>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
@@ -88,14 +88,14 @@ export default function IndexPage() {
|
|||||||
width={80}
|
width={80}
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<p className="text-xl">Our Achievements</p>
|
<p className="text-xl font-bold">Our Achievements</p>
|
||||||
<p className="text-small text-default-500">1st place in Cansat Slovakia 2024</p>
|
<p className="text-small text-default-500">1st place in Cansat Slovakia 2024</p>
|
||||||
</div>
|
</div>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<Divider />
|
<Divider />
|
||||||
<CardBody className="text-xl">
|
<CardBody className="text-xl">
|
||||||
<p>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.</p>
|
<p className="pt-5">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.</p>
|
||||||
<p>With the help of our</p>
|
<p className="pt-5">Partner with us in our next innovative space project and showcase your company's commitment to fostering young talent in aerospace engineering.</p>
|
||||||
</CardBody>
|
</CardBody>
|
||||||
<Divider />
|
<Divider />
|
||||||
<CardFooter>
|
<CardFooter>
|
||||||
|
@@ -5,8 +5,28 @@ import {Card, CardHeader, CardBody, CardFooter} from "@heroui/card";
|
|||||||
import {Divider} from "@heroui/divider";
|
import {Divider} from "@heroui/divider";
|
||||||
import {Link} from "@heroui/link";
|
import {Link} from "@heroui/link";
|
||||||
import {Button} from "@heroui/button";
|
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() {
|
export default function SponsorPage() {
|
||||||
@@ -58,6 +78,31 @@ export default function SponsorPage() {
|
|||||||
</Button>
|
</Button>
|
||||||
</CardFooter>
|
</CardFooter>
|
||||||
</Card>
|
</Card>
|
||||||
|
<Divider />
|
||||||
|
<span className={title({className: "pt-8"})}>Our Sponsors</span>
|
||||||
|
<div className="gap-10 grid grid-cols-1 sm:grid-cols-3 pt-10">
|
||||||
|
{list.map((item, index) => (
|
||||||
|
/* eslint-disable no-console */
|
||||||
|
<Card key={index} isPressable shadow="sm" onPress={() => console.log("item pressed")}>
|
||||||
|
<CardBody className="overflow-visible p-0">
|
||||||
|
<Link href={item.link}>
|
||||||
|
<Image
|
||||||
|
alt={item.title}
|
||||||
|
className="w-full object-cover h-[13em]"
|
||||||
|
radius="lg"
|
||||||
|
shadow="sm"
|
||||||
|
src={item.img}
|
||||||
|
width="100%"
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
</CardBody>
|
||||||
|
<CardFooter className="text-small justify-center">
|
||||||
|
<b>{item.title}</b>
|
||||||
|
</CardFooter>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</DefaultLayout>
|
</DefaultLayout>
|
||||||
);
|
);
|
||||||
|
BIN
cansat/public/sponsor/needronix.jpg
Normal file
BIN
cansat/public/sponsor/needronix.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
cansat/public/sponsor/sensoneo.png
Normal file
BIN
cansat/public/sponsor/sensoneo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
cansat/public/sponsor/zf.png
Normal file
BIN
cansat/public/sponsor/zf.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
Reference in New Issue
Block a user