Skip to content

Commit

Permalink
Try #2
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 25, 2025
1 parent 4d37201 commit 7b1abbc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
reactStrictMode: true,
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
Expand Down
2 changes: 2 additions & 0 deletions src/components/Hero/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Typography from "@/components/Typography/Typography";
import BackgroundImage from "@/components/BackgroundImage/BackgroundImage";
import CountdownTimer from "@/components/Countdown/Countdown"
import Container from "@/layouts/Container";
import MMFRFull from "../../public/images/mmfr25-full.svg";

const Hero = () => {
return (
Expand All @@ -19,6 +20,7 @@ const Hero = () => {
</Typography>
</div>
<div className="hidden md:flex flex-wrap justify-center gap-8">
<MMFRFull/>
<CountdownTimer targetDate={new Date("2025-03-25T08:00:00")}/>
</div>
</div>
Expand Down
8 changes: 8 additions & 0 deletions src/layouts/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import About from "@/components/About/About";
import Typography from "@/components/Typography/Typography";
import {List as FooterMenu} from "@/components/List/List";
import Container from "@/layouts/Container";
import FooterLogo from "../../public/images/logo_macaron.svg";
import HashtagMMFR from "../../public/images/mmfr2025-footer.svg";
import FooterPatternLeft from "../../public/images/footer_pattern_left.svg";
import FooterPatternRight from "../../public/images/footer_pattern_right.svg";
import {Content, ListItem} from "@/components/List/List.types";
import {FaLinkedinIn, FaYoutube} from "react-icons/fa";
import Link from "next/link";
Expand Down Expand Up @@ -105,6 +109,8 @@ const Footer = () => {
<Container className="px-5" size="large">
<div className="flex gap-24 py-12 pb-0 md:py-14 w-full justify-between">
<div className="relative hidden md:block">
<FooterLogo className="hidden md:block shrink-0 ml-12"/>
<FooterPatternLeft className="absolute hidden md:block bottom-[-20%] left-[-5%]"/>
</div>
<div className="md:flex-grow">
<About/>
Expand All @@ -129,6 +135,8 @@ const Footer = () => {
</Container>
<div className="px-10">
<div className="flex justify-center ">
<HashtagMMFR className="relative z-20 w-full max-w-[100%] h-auto"/>
<FooterPatternRight className="absolute hidden md:block z-10 bottom-8 right-0"/>
</div>
</div>
</BackgroundImage>
Expand Down

0 comments on commit 7b1abbc

Please sign in to comment.