Skip to content

Commit e699dc9

Browse files
Refactor: Replace logo and text
Replaced instances of "OpenHardware" and logo with the new combined logo and text.
1 parent 7a410fe commit e699dc9

5 files changed

Lines changed: 22 additions & 11 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<meta name="twitter:card" content="summary_large_image" />
1717
<meta name="twitter:site" content="@open_hardware" />
1818
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
19-
<link rel="icon" href="/lovable-uploads/8c21749c-761b-4cf2-85ca-64f204ac61dd.png" type="image/png">
19+
<link rel="icon" href="/lovable-uploads/b0678fb8-d457-44c8-999e-b5eeca18af9a.png" type="image/png">
2020
</head>
2121

2222
<body>
61.4 KB
Loading

src/components/Footer.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import React from "react";
32
import { Link } from "react-router-dom";
43
import { Linkedin, Github, Mail } from "lucide-react";
@@ -9,7 +8,13 @@ const Footer = () => {
98
<div className="container mx-auto px-4">
109
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
1110
<div>
12-
<h3 className="text-xl font-bold mb-4">OpenHardware</h3>
11+
<div className="mb-4">
12+
<img
13+
src="/lovable-uploads/b0678fb8-d457-44c8-999e-b5eeca18af9a.png"
14+
alt="OpenHardware Logo"
15+
className="h-10 w-auto"
16+
/>
17+
</div>
1318
<p className="mb-4 text-white/80">
1419
A student initiative focused on hardware innovation, including chip design, electronics,
1520
smart manufacturing, AI hardware acceleration, and tinyML.

src/components/Navbar.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,10 @@ const Navbar = () => {
5555
<div className="flex items-center justify-between">
5656
<Link to="/" className="flex items-center z-50">
5757
<img
58-
src="/lovable-uploads/8c21749c-761b-4cf2-85ca-64f204ac61dd.png"
58+
src="/lovable-uploads/b0678fb8-d457-44c8-999e-b5eeca18af9a.png"
5959
alt="OpenHardware Logo"
60-
className="h-10 w-auto mr-2"
60+
className="h-10 w-auto"
6161
/>
62-
<span className="text-2xl font-bold text-[#333351]">Open<span className="text-[#AB9A89]">Hardware</span></span>
6362
</Link>
6463

6564
{/* Desktop Navigation */}

src/pages/Team.tsx

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,21 @@ const Team = () => {
1919
{/* Header */}
2020
<section className="bg-primary-blue text-white py-16 md:py-24">
2121
<div className="container mx-auto px-4">
22-
<h1 className="text-4xl md:text-5xl font-bold mb-6">Our Team</h1>
23-
<p className="text-xl max-w-3xl">
24-
Meet the passionate individuals behind OpenHardware who are driving innovation in hardware design and implementation.
25-
</p>
22+
<div className="flex flex-col items-center mb-8">
23+
<img
24+
src="/lovable-uploads/b0678fb8-d457-44c8-999e-b5eeca18af9a.png"
25+
alt="OpenHardware Logo"
26+
className="h-16 w-auto mb-6"
27+
/>
28+
<h1 className="text-4xl md:text-5xl font-bold mb-6 text-center">Our Team</h1>
29+
<p className="text-xl max-w-3xl text-center">
30+
Meet the passionate individuals behind OpenHardware who are driving innovation in hardware design and implementation.
31+
</p>
32+
</div>
2633
</div>
2734
</section>
2835

29-
{/* Team Grid */}
36+
{/* Team Grid - remaining code stays the same */}
3037
<section className="py-16 bg-offwhite">
3138
<div className="container mx-auto px-4">
3239
<div className="max-w-6xl mx-auto">

0 commit comments

Comments
 (0)