Skip to content

Commit 82ad657

Browse files
committed
chore: serve logo from jsdelivr CDN
1 parent 4a7a0e5 commit 82ad657

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/src/components/Layout/Footer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Footer() {
1313
{/* Brand / Newsletter Column */}
1414
<div className="footer-brand-col">
1515
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
16-
<img src="/logo.png" alt="urBackend Logo" style={{ height: '80px', width: 'auto' }} />
16+
<img src="https://cdn.jsdelivr.net/gh/yash-pouranik/urBackend@main/frontend/public/logo.png" alt="urBackend Logo" style={{ height: '80px', width: 'auto' }} />
1717
</div>
1818
<p style={{ color: 'var(--color-text-muted)', marginBottom: '1.5rem', maxWidth: '300px' }}>
1919
The instant Backend-as-a-Service for frontend developers. Ship faster.

frontend/src/components/Layout/MainLayout.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Sidebar from './Sidebar';
44
import Header from './Header';
55
import ProjectNavbar from './ProjectNavbar';
66
// Use the new official logo from public directory
7-
const logoImage = "/logo.png";
7+
const logoImage = "https://cdn.jsdelivr.net/gh/yash-pouranik/urBackend@main/frontend/public/logo.png";
88

99
function MainLayout({ children }) {
1010
const [isSidebarOpen, setIsSidebarOpen] = useState(false);

frontend/src/pages/LandingPage/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function LandingPage() {
115115
<nav className={`nav-glass ${!isNavVisible ? 'nav-hidden' : ''} ${scrolled ? 'nav-scrolled' : ''}`}>
116116
<div className="nav-container">
117117
<div style={{ display: 'flex', alignItems: 'center', flex: 1 }}>
118-
<img src="/logo.png" alt="urBackend Logo" style={{ height: '40px', width: 'auto' }} />
118+
<img src="https://cdn.jsdelivr.net/gh/yash-pouranik/urBackend@main/frontend/public/logo.png" alt="urBackend Logo" style={{ height: '40px', width: 'auto' }} />
119119
</div>
120120

121121
<div className="nav-links" style={{ display: window.innerWidth > 768 ? 'flex' : 'none', gap: '32px', alignItems: 'center', fontSize: '0.95rem', color: '#888', fontWeight: 500 }}>

0 commit comments

Comments
 (0)