Skip to content

Commit

Permalink
feat: header styling and linking to the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SEBRATHEZEBRA committed Aug 3, 2023
1 parent 568df68 commit e8a1085
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 4 additions & 2 deletions services/nextjs-app/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="relative flex place-items-center">
<h1 className="text-4xl">Code Review GPT</h1>
<div className="relative flex place-items-center hover:scale-125 duration-500">
<h1 className="hover:text-purple-600 text-4xl font-mono">
<a href="https://github.com/mattzcarey/code-review-gpt">Code Review GPT</a>
</h1>
</div>
</main>
)
Expand Down
6 changes: 0 additions & 6 deletions services/nextjs-app/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
@tailwind components;
@tailwind utilities;

:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
Expand Down

0 comments on commit e8a1085

Please sign in to comment.