Skip to content

Commit

Permalink
removing marginTop and importing container
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanDDegli committed Jun 10, 2024
1 parent db4502b commit 33b194b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Image from "next/image";
import Logo from "@/assets/Logo.svg";
import { MenuItem } from "./MenuItem";
import { Container } from "./Container";
import { Container } from "./container";

export function Header (){
return(
<header className="flex justify-between items-center w-full h-20 px-4 bg-black md:px-8" style={{ marginTop: 20}}>
<header className="flex justify-between items-center w-full h-20 px-4 bg-black md:px-8">
<Image src={Logo} alt={Logo} />
<Container>
<div className="talkd-menu p-2 rounded-md">
Expand Down
2 changes: 1 addition & 1 deletion src/components/SectionHero.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Cards } from "./Card";
import { Container } from "./Container";
import { Container } from "./container";

export function SectionHero() {
return (
Expand Down

0 comments on commit 33b194b

Please sign in to comment.