Skip to content

Commit

Permalink
feat(tailwind): convert Header component
Browse files Browse the repository at this point in the history
From styled-components to tailwindcss
  • Loading branch information
mateusfg7 committed Aug 18, 2022
1 parent cfc3a58 commit 35a4fbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 33 deletions.
10 changes: 4 additions & 6 deletions src/components/Header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import React from 'react'

import LocalHeader from './styles'

export const Header: React.FC = () => {
return (
<LocalHeader>
<h1>
<a href="/Noisekun" className="umami--click--title">
<header className="flex justify-center items-center h-[15vh] bg-[rgba(255, 255, 255, 0.1)] md:shadow-header">
<h1 className="font-semibold text-2xl">
<a href="/" className="umami--click--title text-white/90">
Noisekun
</a>
</h1>
</LocalHeader>
</header>
)
}
27 changes: 0 additions & 27 deletions src/components/Header/styles.ts

This file was deleted.

0 comments on commit 35a4fbb

Please sign in to comment.