english page update

This commit is contained in:
SimeonPursiainen
2025-05-16 23:28:54 +03:00
parent 3181cede9b
commit 71f209edde
@@ -0,0 +1,22 @@
import React from "react";
import {
Hero, HeroPrimarySection, HeroAside, HeroAsideItem,
} from "@components/Hero";
const ForFreshmenPageHero: React.FC = () => (
<Hero>
<HeroPrimarySection
header="This site is under construction and will be updated during the summer!"
text="This is a site that contains all of the important information for new students. Of course, it is also worth checking out the general pages, as not everything that happens in the guild fits here."
/>
<HeroAside bgColor="lightTurquoise">
<HeroAsideItem
header="Follow the news of the guild"
link="https://t.me/+KxOI-aQ0jpFhNTJk"
linkText="Join the guild's news channel!"
/>
</HeroAside>
</Hero>
);
export default ForFreshmenPageHero;