mirror of
https://github.com/miggymofongo/kh_quote.git
synced 2024-11-23 14:50:26 +00:00
momentum and notes
This commit is contained in:
parent
b0c965124f
commit
e71b4aac6c
4 changed files with 12 additions and 5 deletions
|
@ -1,6 +1,11 @@
|
||||||
WEPA! I'm Miguel and I'm deploying React web applications on github pages now! Check out this quote generator that
|
WEPA! I'm Miguel and I'm deploying React web applications on github pages now! Check out this quote generator that
|
||||||
cycles through an array of quotes from the Kingdom Hearts video game series.
|
cycles through an array of quotes from the Kingdom Hearts video game series.
|
||||||
|
|
||||||
|
To do list
|
||||||
|
|
||||||
|
quote query?
|
||||||
|
update quotes from khdatabase.com
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="a quote shuffler"
|
content="a quote shuffler with lines from Kingdom Hearts"
|
||||||
/>
|
/>
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||||
<!--
|
<!--
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import './App.css';
|
import './App.css';
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import Header from '../Header/Header';
|
import CollapsibleExample from '../Header/Header';
|
||||||
import quotes from '../Quote/quotes';
|
import quotes from '../Quote/quotes';
|
||||||
import QuoteCard from '../Quote/QuoteCard';
|
import QuoteCard from '../Quote/QuoteCard';
|
||||||
import UncontrolledExample from '../Carousel/Carousel';
|
import UncontrolledExample from '../Carousel/Carousel';
|
||||||
|
@ -58,7 +58,7 @@ export default class App extends Component {
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<Header /><div className='wrapper'>
|
<CollapsibleExample /><div className='wrapper'>
|
||||||
<h1 className="text-center">Random Kingdom Hearts Quote Generator</h1>
|
<h1 className="text-center">Random Kingdom Hearts Quote Generator</h1>
|
||||||
<p> Click the WEPA! button to cycle through an array of different
|
<p> Click the WEPA! button to cycle through an array of different
|
||||||
character quotes from the Kingdom Hearts video game series!
|
character quotes from the Kingdom Hearts video game series!
|
||||||
|
|
|
@ -4,7 +4,9 @@ function Footer(){
|
||||||
|
|
||||||
return(
|
return(
|
||||||
|
|
||||||
<footer>
|
|
||||||
|
<Footer>
|
||||||
|
|
||||||
|
|
||||||
<Container fluid>
|
<Container fluid>
|
||||||
<Row className="bg-primary text-white">
|
<Row className="bg-primary text-white">
|
||||||
|
@ -28,7 +30,7 @@ function Footer(){
|
||||||
</Row>
|
</Row>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
||||||
</footer>
|
</Footer>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue