Skip to content

Commit

Permalink
Merge pull request #63 from ProvideQ/feat/change-contributors
Browse files Browse the repository at this point in the history
Change Contributors
  • Loading branch information
koalamitice authored Feb 3, 2025
2 parents 9c9e789 + 454f810 commit 30a7f12
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 22 deletions.
24 changes: 4 additions & 20 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const Footer = () => (
<VStack borderTopWidth={1} paddingTop={"1rem"}>
<HStack justifyContent={"space-between"} width={"100%"}>
<Text color={"gray.500"} paddingY={"3"}>
ProvideQ is made possible by these partners:
ProvideQ contributors:
</Text>
<HStack>
<Link href="https://www.kit.edu/legals.php" color={"blue.400"}>
Expand All @@ -17,27 +17,11 @@ export const Footer = () => (
</HStack>
</HStack>
<HStack width={"100%"} justifyContent={"space-between"}>
<Link href="https://www.kit.edu/">
<Image src="/KIT.svg" height={"2.5rem"} />
</Link>
<Link href="https://www.tu-braunschweig.de/">
<Image src="/Braunschweig.svg" height={"2.5rem"} />
</Link>
<Link href="https://www.uni-koeln.de/">
<Image src="/Köln.svg" height={"2.5rem"} />
</Link>
<Link href="https://www.uni-hannover.de/de/">
<Image src="/Hannover.svg" height={"2.5rem"} />
<Link href="https://tva.kastel.kit.edu/index.php">
<Image src="/KIT.svg" height={"2.5rem"} alt="KIT" />
</Link>
<Link href="https://www.gams.com/">
<Image src="/gams.svg" height={"2.5rem"} />
</Link>
<Link href="https://www.4flow.com/">
<Image
src="/4flow.svg"
height={"2.5rem"}
style={{ transform: "scale(1.75)", paddingRight: "10px" }}
/>
<Image src="/gams.svg" height={"2.5rem"} alt="GAMS" />
</Link>
</HStack>
</VStack>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/solve/FeatureModelAnomaly.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const FeatureModelAnomaly: NextPage = () => {
</UnorderedList>

<TextInputMask
problemTypeId=""
problemTypeId="feature-model-anomaly-dead"
textPlaceholder="Enter your feature model in UVL format"
text={uvl}
setText={setUvl}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/solve/VehicleRouting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const VehicleRouting: NextPage = () => {
problemTypeId="vrp"
text={vrp}
setText={setVrp}
textPlaceholder={"Enter your Vehicle Routing problem in vrp format"}
textPlaceholder={"Enter your problem in vrp format"}
/>

<SolverConfiguration problemTypeId="vrp" problemInput={vrp} />
Expand Down

0 comments on commit 30a7f12

Please sign in to comment.