-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move attribution from end to start screen
- Loading branch information
1 parent
6278430
commit 0a4a530
Showing
3 changed files
with
82 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import {Center, Text} from "@mantine/core"; | ||
|
||
export default function Attribution() { | ||
return <Center sx={{flexWrap: "nowrap", flexDirection: "column"}}> | ||
<svg width="120" height="63" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 73 38"> | ||
<path d="M28 0v31h8V0h37v38h-7V7h-8v31h-7V7h-8v31H21V7h-7v31H7V7H0V0h28z" fill="rgb(48, 112, 179)"></path> | ||
</svg> | ||
<Text size={14} align={"center"}> | ||
Technical University of Munich<br/> | ||
<br/> | ||
Bachelor's Thesis in Informatics for the course Compiler Construction at the chair I2<br/> | ||
<br/> | ||
By Michael Spiss, advised by Dr. Michael Petter | ||
</Text> | ||
</Center> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters