momentum and notes

This commit is contained in:
miggymofongo2 2024-06-18 23:28:01 -04:00
parent b0c965124f
commit e71b4aac6c
4 changed files with 12 additions and 5 deletions

View file

@ -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
cycles through an array of quotes from the Kingdom Hearts video game series.
To do list
quote query?
update quotes from khdatabase.com

View file

@ -6,7 +6,7 @@
<meta name="theme-color" content="#000000" />
<meta
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" />
<!--

View file

@ -1,6 +1,6 @@
import './App.css';
import React, { Component } from 'react';
import Header from '../Header/Header';
import CollapsibleExample from '../Header/Header';
import quotes from '../Quote/quotes';
import QuoteCard from '../Quote/QuoteCard';
import UncontrolledExample from '../Carousel/Carousel';
@ -58,7 +58,7 @@ export default class App extends Component {
return (
<div>
<Header /><div className='wrapper'>
<CollapsibleExample /><div className='wrapper'>
<h1 className="text-center">Random Kingdom Hearts Quote Generator</h1>
<p> Click the WEPA! button to cycle through an array of different
character quotes from the Kingdom Hearts video game series!

View file

@ -4,7 +4,9 @@ function Footer(){
return(
<footer>
<Footer>
<Container fluid>
<Row className="bg-primary text-white">
@ -28,7 +30,7 @@ function Footer(){
</Row>
</Container>
</footer>
</Footer>
)
}