aboutsummaryrefslogtreecommitdiff
path: root/src/components/Slideshow.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Slideshow.tsx')
-rw-r--r--src/components/Slideshow.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/Slideshow.tsx b/src/components/Slideshow.tsx
new file mode 100644
index 0000000..8cb0d77
--- /dev/null
+++ b/src/components/Slideshow.tsx
@@ -0,0 +1,16 @@
+export default function Slideshow(image: string, alt: string) {
+ return (
+ <div className="window">
+ <div className="titlebar">
+ <p className="titlebar-text">Screenshots</p>
+ <div className="titlebar-buttons">
+ <div className="titlebar-box"></div>
+ <div className="titlebar-box"></div>
+ <div className="titlebar-box"></div>
+ </div>
+ </div>
+ <img src={image} alt={alt}/>
+ </div>
+
+ )
+}