added content cards and picture with text section. also added hero section

This commit is contained in:
2026-05-27 19:43:53 +01:00
parent ca60b38c85
commit eed242d5bd
6 changed files with 119 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
export default function hrWithText() {
return (
<>
<div className="flex items-center w-full my-4 md:my-10">
<div className="flex-1 h-px bg-neutral-300 dark:bg-neutral-700" />
<span className="px-4 text-2xl text-neutral-400 dark:text-neutral-500 select-none">scroll down</span>
<div className="flex-1 h-px bg-neutral-300 dark:bg-neutral-700" />
</div>
</>
)
}