-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} | ||
|