From e079d00c186e201a9e755627be31a89a852a2378 Mon Sep 17 00:00:00 2001 From: sponge Date: Sun, 24 Nov 2024 14:18:22 -0800 Subject: [PATCH] Added mills work to get finished --- MillsWork/Footer.js | 10 ++++++++++ MillsWork/Gallery.js | 23 +++++++++++++++++++++++ MillsWork/Hero.js | 22 ++++++++++++++++++++++ MillsWork/Navbar.js | 28 ++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+) create mode 100644 MillsWork/Footer.js create mode 100644 MillsWork/Gallery.js create mode 100644 MillsWork/Hero.js create mode 100644 MillsWork/Navbar.js diff --git a/MillsWork/Footer.js b/MillsWork/Footer.js new file mode 100644 index 0000000..3629975 --- /dev/null +++ b/MillsWork/Footer.js @@ -0,0 +1,10 @@ +import React from 'react'; + +const Footer = () => ( + +); + +export default Footer; diff --git a/MillsWork/Gallery.js b/MillsWork/Gallery.js new file mode 100644 index 0000000..2ba6a93 --- /dev/null +++ b/MillsWork/Gallery.js @@ -0,0 +1,23 @@ +import React from 'react'; + +const Gallery = () => ( +
+

Gallery

+
+ {Array.from({ length: 6 }).map((_, index) => ( +
+
+ {`Placeholder +
+
Placeholder {index + 1}
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

+ View +
+
+
+ ))} +
+
+); + +export default Gallery; diff --git a/MillsWork/Hero.js b/MillsWork/Hero.js new file mode 100644 index 0000000..fa73693 --- /dev/null +++ b/MillsWork/Hero.js @@ -0,0 +1,22 @@ +import React from 'react'; +import './styles.css'; + +const Hero = () => ( +
+
+
+

Welcome to Unity AI Lab

+

Exploring the boundaries of creativity and intelligence.

+ + Learn More + +
+
+); + +export default Hero; diff --git a/MillsWork/Navbar.js b/MillsWork/Navbar.js new file mode 100644 index 0000000..cc78634 --- /dev/null +++ b/MillsWork/Navbar.js @@ -0,0 +1,28 @@ +import React from 'react'; +import { Link } from 'react-router-dom'; + +const Navbar = () => ( + +); + +export default Navbar;