Skip to content

Commit

Permalink
last minute frontend thing
Browse files Browse the repository at this point in the history
  • Loading branch information
g00gol committed Oct 8, 2023
1 parent 976436c commit 2f2f347
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
html, body {
width: 100%;
height: 100%;
overflow-y: auto
}

@layer base {
Expand All @@ -27,6 +26,9 @@ html, body {
small {
@apply text-sm;
}
a {
@apply underline;
}
}

@layer components {
Expand Down
5 changes: 3 additions & 2 deletions frontend/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ const quicksand = Quicksand({
});

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "frieren.playground",
description:
"celebrating open source projects. discover projects that interest you! making open source projects more discoverable. we set the standard for collaboration, so you can focus on the projects you love",
};

export default function RootLayout({ children }) {
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/cards/cards.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ export default function Cards({ children }) {
}, [searchTerm]);

return (
<>
<div className="space-y-4">
{data.map((project) => (
<Card key={project.hash} project={project} />
))}
</>
</div>
);
}

0 comments on commit 2f2f347

Please sign in to comment.