-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
265 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React from 'react' | ||
import Constants from '../../resources/AboutMeConstants' | ||
|
||
let AboutMe = (props) =>{ | ||
/*let allCards = ( | ||
Constants.map(Event,index)=>{ | ||
return( | ||
); | ||
} | ||
);*/ | ||
return( | ||
<div ref={props.AboutMeRef} className="aboutMe eventsTitle"> | ||
<h1> About Me</h1> | ||
|
||
<ul> | ||
{ | ||
Constants.map((Event,index)=>{ | ||
return( | ||
<li className="event" key={index}> | ||
<img src={Event.picture} alt="eventLocation"/> | ||
<div className="eventDescription"> | ||
<p> | ||
{Event.description} | ||
</p> | ||
</div> | ||
</li> | ||
); | ||
}) | ||
} | ||
</ul> | ||
</div> | ||
) | ||
} | ||
export default AboutMe; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react' | ||
import Constants from '../../resources/EventsConstants' | ||
|
||
|
||
let Events = (props) =>{ | ||
|
||
let allEvents = Constants.map((event,index) =>{ | ||
return( | ||
<li className="event"key={index}> | ||
<a href={event.link} target="_blank" rel="noreferrer"><img src={event.picture} alt="eventLocation"/></a> | ||
<div className="eventDescription"> | ||
<p> | ||
Where: <a href={event.link} target="_blank" rel="noreferrer">{event.location}</a> | ||
</p> | ||
|
||
<p> | ||
When: {event.date} | ||
</p> | ||
</div> | ||
</li>); | ||
}) | ||
return( | ||
<div ref={props.EventsRef} className="eventsTitle"> | ||
<h1>Events</h1> | ||
<ul> | ||
{allEvents} | ||
</ul> | ||
</div> | ||
) | ||
} | ||
export default Events; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react' | ||
|
||
let Gallery = (props) =>{ | ||
|
||
let entireGallery = props.gallery.map((item,index)=>{ | ||
if(item.link.includes(".mp4")){ | ||
return( | ||
<li key={index}> | ||
<video autoPlay muted loop> | ||
<source src={item.link} type="video/mp4" /> | ||
</video> | ||
</li> | ||
); | ||
} | ||
return( | ||
<li key={index}> | ||
<img src={item.link} alt="stand"/> | ||
</li>); | ||
}) | ||
|
||
return( | ||
<div ref={props.GalleryRef} className="gallery"> | ||
<h1>Gallery</h1> | ||
<ul> | ||
{entireGallery} | ||
</ul> | ||
</div> | ||
); | ||
} | ||
|
||
export default Gallery; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
|
||
let Shop = (props) =>{ | ||
|
||
let entireCatalog = props.shop.map((item) =>{ | ||
return ( | ||
<li key = {item.id} style={{backgroundImage: `url(${item.link})`}}> | ||
<div className="shopButton"> | ||
<div className="shopButtonPackage"> | ||
<p><a href={"https://www.etsy.com/shop/LinDiBracelets?ref=simple-shop-header-name&listing_id=584303931"} target="_blank" rel="noreferrer">Go To Store</a></p> | ||
<p><a href={item.page} target="_blank" rel="noreferrer">Product Details</a></p> | ||
</div> | ||
</div> | ||
</li>); | ||
}) | ||
|
||
return( | ||
<div ref={props.ShopRef} className="shop"> | ||
<h1 >Shop</h1> | ||
<ul> | ||
{entireCatalog} | ||
</ul> | ||
</div> | ||
); | ||
} | ||
|
||
export default Shop; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
|
||
import etsy from '../../resources/images/social-media/etsy.png'; | ||
import facebook from '../../resources/images/social-media/facebook.png'; | ||
import instagram from '../../resources/images/social-media/instagram.png'; | ||
|
||
let SocialMedia = (props) => { | ||
return( | ||
<div className="socialMedia"> | ||
<p>All rights reserved</p> | ||
<ul> | ||
<li><a href={"https://www.instagram.com/lindibracelets/"} target="_blank" rel="noreferrer"><img className="socialMediaIcon"src={instagram} alt="FacebookLogo"/></a></li> | ||
<li><a href={"https://www.facebook.com/LinDiBracelets/"} target="_blank" rel="noreferrer"><img className="socialMediaIcon"src={facebook} alt="InstagramLogo"/></a></li> | ||
<li><a href={"https://www.etsy.com/shop/LinDiBracelets?ref=simple-shop-header-name&listing_id=584303931"} target="_blank" rel="noreferrer"><img className="socialMediaIcon"src={etsy} alt="EtsyLogo"/></a></li> | ||
</ul> | ||
</div> | ||
); | ||
} | ||
|
||
export default SocialMedia; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
|
||
|
||
let SplashPage = (props) => { | ||
return( | ||
<div className="headerText"> | ||
<h2 className="lindiName">Lindi Bracelets</h2> | ||
<h2 className ="headerBold">Love</h2> | ||
<h2 className ="headerReg">what you wear. be</h2> | ||
<h2 className ="headerBold">Unique</h2> | ||
</div> | ||
); | ||
} | ||
|
||
export default SplashPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.