Skip to content

Commit

Permalink
Merge pull request #394 from SrijaVuppala295/logof
Browse files Browse the repository at this point in the history
Footer Update: Logo and Title Integration for Enhanced Branding
  • Loading branch information
Jaishree2310 authored Nov 1, 2024
2 parents 49070ac + 6f1c954 commit d2423f6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
Binary file added Images/glassy logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added glassy logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/glassy logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ const Footer: React.FC = () => {
<>
<footer className='glass-footer'>
<div className='footer-content'>
<div className='flex items-center space-x-2'>
<img
src='../glassy logo.jpeg'
alt='Glass UI Logo'
className='h-8 w-8' // Adjust size as needed
/>
<h1 className='text-white text-[20px] font-bold'>
<span className='text-blue-400'>Glass</span>UI
</h1>
</div>
<p className='footer-description'>
Elevate your UI with beautifully crafted, glassmorphic components.
Perfect for creating modern, sleek interfaces.
Expand Down Expand Up @@ -105,6 +115,11 @@ const Footer: React.FC = () => {
gap: 20px;
}
.footer-logo {
height: 50px; /* Adjust size as needed */
margin-bottom: 10px;
}
.footer-description {
color: #fff;
font-size: 16px;
Expand Down
14 changes: 11 additions & 3 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,17 @@ const Header: React.FC = () => {

return (
<nav style={navStyle}>
<h1 className='text-white text-[20px] font-bold'>
<span className='text-blue-400'>Glass</span>UI
</h1>
<div className='flex items-center space-x-2'>
<img
src='../glassy logo.jpeg'
alt='Glass UI Logo'
className='h-8 w-8' // Adjust size as needed
/>
<h1 className='text-white text-[20px] font-bold'>
<span className='text-blue-400'>Glass</span>UI
</h1>
</div>

<ul style={ulStyle}>
<li style={liStyle} className='navbar-item'>
<Link
Expand Down

0 comments on commit d2423f6

Please sign in to comment.