Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Sep 6, 2024
1 parent 6261cb0 commit e7cad0f
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 21 deletions.
22 changes: 20 additions & 2 deletions components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
import { FiExternalLink } from 'react-icons/fi';

export const Footer = () => {
return (
<footer className="w-full flex justify-center p-4 pb-48">
<div className="mx-auto">V3X Labs BV.</div>
<footer className="w-full flex justify-between p-4 pb-48 max-w-4xl mx-auto">
<div className="flex gap-2 items-center">
<div className="">V3X Labs BV.</div>
<div className="text-neutral-400">83898824</div>
</div>
<div>
<ul className="flex gap-2">
<li>
<a
href="https://github.com/v3xlabs"
target="_blank"
className="flex items-center gap-2 text-neutral-400 text-sm"
>
view more <FiExternalLink />
</a>
</li>
</ul>
</div>
</footer>
);
};
34 changes: 23 additions & 11 deletions components/sections/projects/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ export const Projects = () => {
return (
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
{[
{
name: 'ensdomains/frensday',
description:
'frENSday is an anual event for the ENS community',
link: 'https://frensday.ens.domains',
type: 'web',
},
{
name: 'v3xlabs/enstate',
description:
Expand Down Expand Up @@ -100,16 +107,22 @@ export const Projects = () => {
</a>
<p className="">{entry.description}</p>
<div className="flex items-center mt-2 gap-2 text-xs text-neutral-500">
<div className="flex items-center gap-1">
<div
className="w-3 h-3 rounded-full"
style={{
backgroundColor:
language_to_color[entry.language],
}}
></div>
<span>{language_to_label[entry.language]}</span>
</div>
{entry.language && (
<div className="flex items-center gap-1">
<div
className="w-3 h-3 rounded-full"
style={{
backgroundColor:
language_to_color[
entry.language
],
}}
></div>
<span>
{language_to_label[entry.language]}
</span>
</div>
)}
{entry.type === 'package' && (
<div className="text-red-700 flex gap-1 items-center">
<SiNpm />
Expand All @@ -134,7 +147,6 @@ export const Projects = () => {
<span>Web</span>
</div>
)}
<span>Updated 9 hours ago</span>
</div>
</div>
</div>
Expand Down
12 changes: 4 additions & 8 deletions components/sections/readme/README.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const README = () => {
</div>
</div>
<div className="p-4 pt-3 space-y-2">
<div className="border-l-4 py-2 border-yellow-400 text-yellow-400 px-4 bg-yellow-400/10 w-fit italic">
{/* <div className="border-l-4 py-2 border-yellow-400 text-yellow-400 px-4 bg-yellow-400/10 w-fit italic">
<b>NOTE</b>
<br />
<span>
Expand All @@ -40,14 +40,14 @@ export const README = () => {
<span>
If this issue persists, try turning it off and on again.
</span>
</div>
</div> */}
<h2> What we do</h2>
<p>We create epic shit.</p>
<p></p>
<h2>🙏 Made possible by</h2>
<h2>Made possible by</h2>
<p>
We would not be where we are today without the generous
contributions from
contributions & support from
</p>
<div className="grid gap-2 grid-cols-1 md:grid-cols-3 xl:w-4/5">
<a
Expand Down Expand Up @@ -88,10 +88,6 @@ export const README = () => {
/>
</a>
</div>
<p>
In addition our thanks goes out to all of our contributors &
community.
</p>
</div>
</div>
);
Expand Down

0 comments on commit e7cad0f

Please sign in to comment.