Skip to content

Commit

Permalink
Create Repesitory.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
allyelvis authored Jan 20, 2025
1 parent 5894d90 commit 703c923
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions app/components/Repesitory.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export default function Repository() {
const contents = [
"Source code for our software projects",
"Documentation for our products and services",
"Resources for developers and users",
]

return (
<section id="repository" className="mb-12">
<h2 className="text-2xl font-bold mb-4">Repository Contents</h2>
<p>This repository contains:</p>
<ul className="list-disc pl-6 mt-2">
{contents.map((content, index) => (
<li key={index} className="mb-2">
{content}
</li>
))}
</ul>
</section>
)
}

0 comments on commit 703c923

Please # to comment.