11---
22import Layout from " @components/Layout.astro" ;
3-
43import " ../styles/global.css" ;
4+ import " ../styles/index.css" ;
55
6+ import headshot from " @assets/monserate-headshot.png" ;
7+ import { Image } from " astro:assets" ;
68const pageTitle = " Home" ;
79const ogType = " website" ;
810const ogDescription =
@@ -12,16 +14,24 @@ const seoDescription =
1214---
1315
1416<Layout {pageTitle } {ogType } {ogDescription } {seoDescription }>
15- <h1 >{ pageTitle } </h1 >
16- <h2 >Computer Engineering and Philosophy: Ethics Student</h2 >
17- <p >
18- Welcome to my brand new* website! This is a place where I will be
19- posting my projects, blog posts, and other things I find interesting.
20- </p >
21- <p >< Big Button to "about me"> </p >
22- <p >< Big Button to "projects"> </p >
23- <p >
24- *This website is still under construction, so please excuse the mess! I
25- will be adding more content soon.
26- </p >
17+ <div id =" content" >
18+ <div id =" left" >
19+ <h1 >Violet Monserate</h1 >
20+ <h2 >Computer Engineering and Philosophy: Ethics Student</h2 >
21+ <p >
22+ Welcome to my website! This is a place where I will
23+ posting my projects, contact info, and other things I find
24+ interesting. Feel free to explore, and feel free to contact
25+ me below. I love hearing from folks!
26+ </p >
27+ <a href =" /about" class =" button" >About Me</a >
28+ <a href =" /projects" class =" button" >Projects</a >
29+ <a href =" /contact" class =" button" >Contact Me</a >
30+ </div >
31+ <Image
32+ id =" headshot"
33+ src ={ headshot }
34+ alt =" Headshot of Violet Monserate, a brown woman with long black hair, playing cello"
35+ />
36+ </div >
2737</Layout >
0 commit comments