Files
web2.0-frontend/src/views/ForInternationalPage/ForIntlPageHero.tsx
T
2025-08-16 14:51:57 +03:00

36 lines
1.2 KiB
TypeScript

import React from "react";
import {
Hero, HeroPrimarySection, HeroAside, HeroAsideItem,
} from "@components/Hero";
const ForFreshmenPageHero: React.FC = () => (
<Hero>
<HeroPrimarySection
header="Welcome to Aalto and Otaniemi!"
text="This is the frontpage for fuksis (freshmen). Here we have collected all the most important information that you will need during your first year.
Of course, everything happening in the guild can't fit here, so it is recommended that you also check out the more general 'in english' page."
/>
<HeroAside bgColor="lightTurquoise">
<HeroAsideItem
header="Read the guild&apos;s fuksi guide"
link="https://static.sahkoinsinoorikilta.fi/FTMK/Fopas_25_en_web.pdf"
linkText="Read the fuksi guide here!"
/>
<HeroAsideItem
header="Follow the guild&apos;s announcements"
link="https://t.me/+KxOI-aQ0jpFhNTJk"
linkText="Join the guild's Telegram group!"
/>
<HeroAsideItem
header="Fuksi groups and ISOs?"
link="#isos"
linkText="Information about the fuksi groups"
/>
</HeroAside>
</Hero>
);
export default ForFreshmenPageHero;