adding quote card

This commit is contained in:
miggymofongo2 2024-06-15 00:48:24 -04:00
parent f65f02f1ad
commit 1e5086d7a3
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import React from 'react';
import './quote.css'
export default function
QuoteCard(props) {
const { name, key } = props;
return ( <div><h2>{name}</h2>
<h4>{key}</h4></div>
);
}

View file

@ -0,0 +1,5 @@
.quotes {
font-family: "../Assets/Fonts/KHGummi";
}