Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Delete old .idea config
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasamato committed May 21, 2024
1 parent 5abeae7 commit d2dcb66
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 55 deletions.
5 changes: 0 additions & 5 deletions .idea/.gitignore

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/bvsr-landing-page.iml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

41 changes: 21 additions & 20 deletions components/HeroContent/HeroContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,32 @@ export default async function HeroContent({ lng }: { lng: string }) {
return (
<div
className={
"relative flex h-[700px] flex-col items-center px-32 py-16 text-white"
"relative h-[700px] bg-cover bg-center bg-no-repeat text-white"
}
style={{
backgroundImage: `url(${backgroundImage.src})`,
backgroundSize: "cover",
}}
>
<Image
height={132}
width={240}
src={bvsrLogo}
alt={"BVSR Logo"}
priority={true}
className="object-cover"
/>
<h1 className="text-center text-4xl">
Bundesverband
<br />
studentischer Raumfahrt
</h1>
<span className={"mt-16 text-center text-2xl"}>
{lng == "de"
? "Der Bundesverband studentischer Raumfahrt (BVSR) repräsentiert deutsche Studentengruppen involviert in Weltraumprojekten auf einem nationalen Level"
: "The Bundesverband studentischer Raumfahrt (BVSR) represents German student groups involved in space projects on a national level"}
</span>
<div className="flex flex-col items-center px-32 py-16">
<Image
height={132}
width={240}
src={bvsrLogo}
alt={"BVSR Logo"}
priority={true}
className="object-cover"
/>
<h1 className="text-center text-4xl">
Bundesverband
<br />
studentischer Raumfahrt
</h1>
<span className={"mt-16 text-center text-2xl"}>
{lng == "de"
? "Der Bundesverband studentischer Raumfahrt (BVSR) repräsentiert deutsche Studentengruppen involviert in Weltraumprojekten auf einem nationalen Level"
: "The Bundesverband studentischer Raumfahrt (BVSR) represents German student groups involved in space projects on a national level"}
</span>
</div>
</div>
);
}
6 changes: 3 additions & 3 deletions postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
}
}
},
};

export default config
export default config;
12 changes: 5 additions & 7 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ const config = {
content: [
flowbite.content(),
"./app/**/*.{ts,tsx,js}",
"./components/**/*.{ts,tsx,js}"
"./components/**/*.{ts,tsx,js}",
],
theme: {
extend: {
fontFamily: ["Maven Pro", "sans-serif"]
fontFamily: ["Maven Pro", "sans-serif"],
},
},
plugins: [
flowbite.plugin()
],
}
plugins: [flowbite.plugin()],
};

export default config
export default config;

0 comments on commit d2dcb66

Please sign in to comment.