Skip to content

Commit

Permalink
Merge pull request #288 from sezallagwal/fix/header
Browse files Browse the repository at this point in the history
Fixed overlapping content between header and landing page
  • Loading branch information
rishicds authored Oct 29, 2024
2 parents daa07b7 + 8845e52 commit 0bf1682
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
9 changes: 7 additions & 2 deletions PROJECT_STRUCTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
│ ├── Newsletter.png
│ ├── avatar.png
│ ├── avatar1.png
│ ├── certi 1.svg
│ ├── certi 2.svg
│ ├── certi 3.svg
│ ├── certi 4.png
│ ├── certi 5.png
│ ├── dev1.jpeg
│ ├── dev2.jpeg
│ ├── dev3.jpeg
Expand Down Expand Up @@ -66,6 +71,8 @@
│ │ │ │ └── page.jsx
│ │ │ ├── AddHackathon/
│ │ │ │ └── page.jsx
│ │ │ ├── Certifications/
│ │ │ │ └── page.jsx
│ │ │ ├── Chapters/
│ │ │ │ └── page.jsx
│ │ │ ├── Events/
Expand Down Expand Up @@ -133,8 +140,6 @@
│ │ │ │ │ └── page.jsx
│ │ │ │ ├── opportunities.js
│ │ │ │ └── page.jsx
│ │ │ ├── certifications/
│ │ │ │ └── page.jsx
│ │ │ ├── devStudent/
│ │ │ │ └── page.jsx
│ │ │ ├── devprod/
Expand Down
9 changes: 7 additions & 2 deletions repo_structure.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
│ ├── Newsletter.png
│ ├── avatar.png
│ ├── avatar1.png
│ ├── certi 1.svg
│ ├── certi 2.svg
│ ├── certi 3.svg
│ ├── certi 4.png
│ ├── certi 5.png
│ ├── dev1.jpeg
│ ├── dev2.jpeg
│ ├── dev3.jpeg
Expand Down Expand Up @@ -62,6 +67,8 @@
│ │ │ │ └── page.jsx
│ │ │ ├── AddHackathon/
│ │ │ │ └── page.jsx
│ │ │ ├── Certifications/
│ │ │ │ └── page.jsx
│ │ │ ├── Chapters/
│ │ │ │ └── page.jsx
│ │ │ ├── Events/
Expand Down Expand Up @@ -129,8 +136,6 @@
│ │ │ │ │ └── page.jsx
│ │ │ │ ├── opportunities.js
│ │ │ │ └── page.jsx
│ │ │ ├── certifications/
│ │ │ │ └── page.jsx
│ │ │ ├── devStudent/
│ │ │ │ └── page.jsx
│ │ │ ├── devprod/
Expand Down
8 changes: 6 additions & 2 deletions src/components/Global/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import * as React from "react";
import Link from "next/link";
import { useState } from "react";
import { cn } from "@/lib/utils";
// import { Icons } from "@/components/icons";

import {
NavigationMenu as UiNavigationMenu,
NavigationMenuItem,
Expand Down Expand Up @@ -56,8 +58,10 @@ export function NavigationMenu() {

return (
<>
<div className="bg-white shadow-md fixed top-0 left-0 right-0 z-10 text-black flex justify-between items-center p-4 border-b select-none">
{/* Left Corner - GDSC-RCIIT with image */}
<div
className="bg-white shadow-md fixed top-0 left-0 right-0 z-10 text-black flex justify-between items-center p-4 border-b select-none"
style={{zIndex: 11}}
>
<div className="flex items-center space-x-3">
<img
src="/Logo.svg"
Expand Down

0 comments on commit 0bf1682

Please sign in to comment.