Skip to content

Commit b7dca8c

Browse files
add the logos of the different projects
1 parent 0f407f0 commit b7dca8c

File tree

4 files changed

+52
-12
lines changed

4 files changed

+52
-12
lines changed

app/about/page.tsx

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { Badge } from "@/components/ui/badge";
66
import { Button } from "@/components/ui/button";
77
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
88
import { useTheme } from "next-themes";
9+
import TUMLiveLogo from "@/public/icons/tum-live.svg";
10+
import NavigaTUMLogo from "@/public/icons/navigatum.svg";
911

1012
export default function AboutPage() {
1113
const { theme } = useTheme();
@@ -147,10 +149,8 @@ export default function AboutPage() {
147149
<section className="py-16 px-4 dark:bg-slate-800 bg-white">
148150
<div className="container mx-auto max-w-6xl">
149151
<div className="flex items-center justify-center mb-12">
150-
<div className="w-12 h-12 bg-gradient-to-br from-indigo-500 to-purple-500 rounded-lg flex items-center justify-center mr-4">
151-
<Smartphone className="w-6 h-6 text-white" />
152-
</div>
153-
<h2 className="text-3xl font-bold dark:text-white text-gray-900">Die App</h2>
152+
<Image src="/icons/tca.png" alt="TUM Campus App Logo" height={60} width={60} className="rounded-lg flex items-center justify-center mr-4" />
153+
<h2 className="text-4xl font-bold dark:text-white text-gray-900">Campus App</h2>
154154
</div>
155155

156156
<div className="grid lg:grid-cols-2 gap-12">
@@ -209,10 +209,7 @@ export default function AboutPage() {
209209
<div className="container mx-auto max-w-6xl">
210210
<div className="text-center mb-12">
211211
<div className="flex items-center justify-center mb-6">
212-
<div className="w-12 h-12 bg-gradient-to-br from-blue-500 to-cyan-500 rounded-lg flex items-center justify-center mr-4">
213-
<Wrench className="w-6 h-6 text-white" />
214-
</div>
215-
<h2 className="text-3xl font-bold dark:text-white text-gray-900">NavigaTUM</h2>
212+
<Image src={NavigaTUMLogo} alt="NavigaTUM Logo" height={60} />
216213
</div>
217214
<p className="text-xl dark:text-gray-300 text-gray-600 mb-8 leading-relaxed max-w-3xl mx-auto">
218215
2021 wurde NavigaTUM ins Leben gerufen, um den in die Jahre gekommenen Roomfinder durch eine moderne Lösung zu ersetzen. Das von
@@ -277,10 +274,7 @@ export default function AboutPage() {
277274
<div className="container mx-auto max-w-6xl">
278275
<div className="text-center mb-12">
279276
<div className="flex items-center justify-center mb-6">
280-
<div className="w-12 h-12 bg-gradient-to-br from-red-500 to-pink-500 rounded-lg flex items-center justify-center mr-4">
281-
<Zap className="w-6 h-6 text-white" />
282-
</div>
283-
<h2 className="text-3xl font-bold dark:text-white text-gray-900">TUM.live</h2>
277+
<Image src={TUMLiveLogo} alt="TUM.live Logo" height={90} />
284278
</div>
285279
<p className="text-xl dark:text-gray-300 text-gray-600 mb-8 leading-relaxed max-w-3xl mx-auto">
286280
Our livestreaming and video-on-demand service for lectures at the School of Computation, Information and Technology. Watch your

public/icons/navigatum.svg

Lines changed: 1 addition & 0 deletions
Loading

public/icons/tca.png

18 KB
Loading

public/icons/tum-live.svg

Lines changed: 45 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)