astro/examples/portfolio/src/pages/about.astro

62 lines
2.5 KiB
Text
Raw Normal View History

---
import MainHead from '../components/MainHead.astro';
import Footer from '../components/Footer/index.jsx';
import Nav from '../components/Nav/index.jsx';
2021-07-13 03:46:28 +00:00
let lang = 'en';
---
2021-07-13 03:46:28 +00:00
<html lang={ lang ?? 'en' }>
<head>
<MainHead title="About | Jeanine White" />
<style lang="scss">
.heroImg {
object-fit: cover;
img {
width: 100%;
height: 100%;
}
}
.bio {
font-size: var(--f-u1);
line-height: 2;
}
</style>
</head>
<body>
<Nav />
<div class="wrapper">
<h1>About Jeanine</h1>
<div class="heroImg">
<img width="1400" height="350" src="https://images.unsplash.com/photo-1581977012607-4091712d36f9?auto=format&fit=crop&w=1400&h=350&q=75" />
</div>
<div class="bio wrapper wrapper__readable mt8">
<p>
Cream cheese say cheese stinking bishop. Brie fondue hard cheese bocconcini feta camembert de normandie babybel airedale. Red leicester swiss manchego mascarpone pepper
jack airedale fromage frais ricotta. Cheese and biscuits cauliflower cheese boursin.
</p>
<p>
Pepper jack cheesy feet cheese slices. Halloumi port-salut queso caerphilly roquefort cheese slices cheesy feet rubber cheese. Cheese slices smelly cheese pecorino
macaroni cheese feta blue castello roquefort edam. Babybel pepper jack airedale cheddar fromage frais manchego.
</p>
<p>
Cauliflower cheese lancashire macaroni cheese. Cheeseburger babybel cheese on toast airedale cauliflower cheese who moved my cheese roquefort paneer. Stinking bishop
cheddar taleggio port-salut port-salut stinking bishop cheesy grin babybel. Blue castello feta everyone loves brie.
</p>
<p>
Goat squirty cheese cut the cheese. Cheese and wine cheddar fondue airedale cottage cheese camembert de normandie feta babybel. Rubber cheese melted cheese pecorino
port-salut fondue gouda cheese on toast cheesy feet. Feta edam everyone loves cheese strings camembert de normandie.
</p>
<p>
Caerphilly monterey jack goat. Squirty cheese cheesy grin hard cheese cheese strings cheese and biscuits croque monsieur smelly cheese danish fontina. Swiss cheese
triangles everyone loves mascarpone cheese on toast who moved my cheese lancashire cheeseburger. Fromage frais fromage frais cheese and biscuits stinking bishop
cauliflower cheese.
</p>
</div>
</div>
<Footer />
</body>
</html>