aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2020-06-17 15:35:04 -0400
committerAndrew Lee <alee14498@gmail.com>2020-06-17 15:35:04 -0400
commita2da20ce52b86552771f1dfa3cb46d07255cc288 (patch)
tree96247842c3160c3a498fab5fd40a98fa38e6b0b3 /pages/index.js
parentcbfaa8d3d8b5fe2190d6ebeb8b8e59c975069855 (diff)
downloadalp-website-a2da20ce52b86552771f1dfa3cb46d07255cc288.tar.gz
alp-website-a2da20ce52b86552771f1dfa3cb46d07255cc288.tar.bz2
alp-website-a2da20ce52b86552771f1dfa3cb46d07255cc288.zip
New ToS and Logo
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js78
1 files changed, 3 insertions, 75 deletions
diff --git a/pages/index.js b/pages/index.js
index 63a56b8..378cf8c 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -1,6 +1,6 @@
/*
Alee Productions Website: Website for Alee Productions
- Copyright (C) 2019 Alee
+ Copyright (C) 2020 Alee
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -28,80 +28,8 @@ const Index = () => (
<a className="btn btn-green btn-lg animsition-link" href="/about" role="button">More about us</a>
</div>
<div className="container">
- {/* Jumbotron */}
- <div className="container">
- {/* Carousel Wrapper*/}
- <div id="carousel-product" className="carousel slide carousel-slide" data-ride="carousel">
- {/* Indicators*/}
- <ol className="carousel-indicators">
- <li data-target="#carousel-product" data-slide-to="0" className="active"/>
- <li data-target="#carousel-product" data-slide-to="1"/>
- <li data-target="#carousel-product" data-slide-to="2"/>
- </ol>
- {/* Indicators */}
- {/* Slides */}
- <div className="carousel-inner" role="listbox">
- <div className="carousel-item active">
- <div className="view">
- <img className="d-block w-100" src="/assets/img/carousel/unicity.png"
- alt="First slide"/>
- <div className="mask rgba-black-light"/>
- </div>
- <div className="carousel-caption">
- <h3 className="h3-responsive">Unicity</h3>
- <p>A Sims clone written in Unity3D.</p>
- <a className="btn btn-green btn-lg"
- href="https://github.com/aleeproductions/Unicity/blob/master/README.md"
- role="button">Learn More</a>
- </div>
- </div>
- <div className="carousel-item">
- {/* Mask color */}
- <div className="view">
- <img className="d-block w-100"
- src="https://mdbootstrap.com/img/Photos/Slides/img%20(6).jpg"
- alt="Second slide"/>
- <div className="mask rgba-black-light"/>
- </div>
- <div className="carousel-caption">
- <h3 className="h3-responsive">QuantumNet</h3>
- <p>A computer "hacking" game made in C#.</p>
- <a className="btn btn-green btn-lg"
- href="https://github.com/aleeproductions/QuantumNet/blob/master/README.md"
- role="button">Learn More</a>
- </div>
- </div>
- <div className="carousel-item">
- {/* Mask color */}
- <div className="view">
- <img className="d-block w-100"
- src="https://mdbootstrap.com/img/Photos/Slides/img%20(9).jpg"
- alt="Third slide"/>
- <div className="mask rgba-black-light"/>
- </div>
- <div className="carousel-caption">
- <h3 className="h3-responsive">Slight mask</h3>
- <p>Third text</p>
- <a className="btn btn-green btn-lg" href="#" role="button">Learn More</a>
- </div>
- </div>
- {/* /.Slides */}
- {/* Controls */}
- <a className="carousel-control-prev" href="#carousel-product" role="button"
- data-slide="prev">
- <span className="carousel-control-prev-icon" aria-hidden="true"/>
- <span className="sr-only">Previous</span>
- </a>
- <a className="carousel-control-next" href="#carousel-product" role="button"
- data-slide="next">
- <span className="carousel-control-next-icon" aria-hidden="true"/>
- <span className="sr-only">Next</span>
- </a>
- {/* /.Controls */}
- </div>
- {/* /.Carousel Wrapper */}
- </div>
- </div>
+ <h1>Hello! Just note that we're reworking on this page!</h1>
+
</div>
</Layout>
);