Skip to content

Commit 0c6bb0c

Browse files
committed
image
1 parent 94ed9de commit 0c6bb0c

5 files changed

Lines changed: 23 additions & 5 deletions

File tree

1.12 MB
Loading

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-react-app"
10+
content="Kent Hack Enough - A HacKSU sponsored Capture The Flag competition"
1111
/>
1212
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1313
<!--
@@ -31,7 +31,7 @@
3131
crossorigin="anonymous"
3232
>
3333

34-
<title>React App</title>
34+
<title>Kent Hack Enough</title>
3535
</head>
3636
<body>
3737
<noscript>You need to enable JavaScript to run this app.</noscript>

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "Kent Hack It",
3-
"name": "Kent Hack It",
2+
"short_name": "Kent Hack Enough",
3+
"name": "Kent Hack Enough",
44
"icons": [
55
{
66
"src": "favicon.ico",

src/App.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,23 @@
5050
font-size: 1.5rem;
5151
color: white !important;
5252
text-decoration: none;
53+
padding: 0.25rem 0.5rem !important;
54+
}
55+
56+
.navbar-brand img {
57+
transition: all 0.3s ease;
58+
margin: 0;
5359
}
5460

5561
.navbar-brand:hover {
5662
color: #f0f0f0 !important;
5763
}
5864

65+
.navbar-brand:hover img {
66+
transform: scale(1.05);
67+
filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
68+
}
69+
5970
.nav-link {
6071
font-weight: 400;
6172
color: white !important;

src/components/navbar.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,14 @@ function Navbar() {
5959
return (
6060
<nav className="navbar navbar-expand-lg navbar-light bg-light">
6161
<div className="container-fluid">
62-
<Link className="navbar-brand" to="/">KHI</Link>
62+
<Link className="navbar-brand d-flex align-items-center" to="/">
63+
<img
64+
src="/2026_KHI_Logo_Transparent.png"
65+
alt="KHI Logo"
66+
height="80"
67+
className=""
68+
/>
69+
</Link>
6370
<button className="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
6471
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
6572
<span className="navbar-toggler-icon"></span>

0 commit comments

Comments
 (0)