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

Commit

Permalink
Update NavLink in App component
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmielchen committed Feb 11, 2024
1 parent 984834c commit 365034c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";

import { useEffect, useState } from "react";
import 'bootstrap/dist/css/bootstrap.min.css';
import { Button, ButtonGroup, Container, Navbar, NavbarText} from "react-bootstrap";
import { Button, ButtonGroup, Container, NavLink, Navbar, NavbarText} from "react-bootstrap";

import Artikel from "./lib/artikel";

Expand Down Expand Up @@ -62,7 +62,9 @@ function Layout() {
</Button>
</ButtonGroup>
<ThemeSchalter />
<NavbarText>entwickelt von Max Mielchen</NavbarText>
<NavLink href="https://github.com/maxmielchen/stft" target="_blank" className="text-decoration-none">
<NavbarText>entwickelt von Max Mielchen</NavbarText>
</NavLink>
</Container>
</Navbar>

Expand Down

0 comments on commit 365034c

Please sign in to comment.