mirror of
https://github.com/evroon/bracket.git
synced 2026-01-06 04:58:46 -05:00
Use https://github.com/shuding/nextra and https://github.com/leoMirandaa/shadcn-landing-page instead of Docusaurus.
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import Image from "next/image";
|
|
import preview from "../content/img/bracket-screenshot-design.png";
|
|
|
|
export const PreviewImage = () => {
|
|
return (
|
|
<section className="container place-items-center py-20">
|
|
<Image
|
|
alt="Design of the Bracket dashboard"
|
|
src={preview.src}
|
|
width={1000}
|
|
height={1000}
|
|
/>
|
|
</section>
|
|
);
|
|
};
|