0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/examples/portfolio/src/pages/about.astro
2022-07-08 22:08:32 +02:00

72 lines
2.4 KiB
Text

---
import MainHead from "../components/MainHead.astro";
import Footer from "../components/Footer/index.jsx";
import Nav from "../components/Nav/index.jsx";
---
<html lang="en">
<head>
<MainHead title="About | Jeanine White" description="About Jeanine White Lorem Ipsum" />
<style lang="scss">
.heroImg {
max-height: 24rem;
object-fit: cover;
overflow: hidden;
img {
width: 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>