Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct Hidden Content Under Navbar #444

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Footer: React.FC = () => {
>
<i className='fa-brands fa-github'></i>
</a>
<p>&copy; 2023 GlassyUI. All rights reserved.</p>
<p>&copy; 2024 GlassyUI. All rights reserved.</p>
</div>

<style jsx>{`
Expand Down Expand Up @@ -137,7 +137,7 @@ const Footer: React.FC = () => {
right: '-300px',
}}
>
&copy; 2024 GlassyUI. All rights reserved.
{/* &copy; 2024 GlassyUI. All rights reserved. */}
</p>
<div
style={{
Expand Down
6 changes: 3 additions & 3 deletions src/components/GlassyUILandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const GlassyUILandingPage: React.FC = () => {
}}
/>

<div className='homeGSap relative z-10 w-full max-w-4xl'>
<div className='mt-14 homeGSap relative z-10 w-full max-w-4xl'>
<header className='w-full flex justify-between items-center mb-4'>
{' '}
{/* Adjusted mb-8 to mb-4 */}
Expand All @@ -73,8 +73,8 @@ const GlassyUILandingPage: React.FC = () => {
</header>

<main
className={` text-center p-12 rounded-xl backdrop-filter backdrop-blur-lg bg-white bg-opacity-10 shadow-lg border border-white border-opacity-20 relative`}
style={{ marginTop: '20px' }} // Added marginTop for spacing
className={` text-center p-20 rounded-xl backdrop-filter backdrop-blur-lg bg-white bg-opacity-10 shadow-lg border border-white border-opacity-20 relative`}
style={{ marginTop: '18px' }} // Added marginTop for spacing
data-aos='flip-up'
data-aos-duration='2500'
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Header: React.FC = () => {
return (
<nav style={navStyle}>
<h1 className='text-white text-[20px] font-bold'>
<span className='text-blue-400'>Glass</span>UI
<span className='text-blue-400'>Glassy</span>UI
</h1>
<ul style={ulStyle}>
<li style={liStyle} className='navbar-item'>
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import './index.css';
import './index';

const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
Expand Down