Skip to content

Commit

Permalink
set homepage for github pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
327840386 committed Oct 18, 2023
1 parent 44020eb commit f3fa250
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "1.0.0",
"description": "Educator JS Codespace Template",
"source": "src/index.html",
"homepage": "https://github.com/microsoft/codespaces-teaching-template-js#readme",
"homepage": "http://3278403862.github.io/my-portfolio",
"scripts": {
"start": "parcel",
"build": "parcel build",
"build-gh": "parcel build --public-url 'https://{github-username}.github.io/{repo-name}'",
"build-gh": "parcel build --public-url 'https://327840386.github.io/my-portfolio'",
"predeploy": "npm run build-gh",
"deploy": "gh-pages -d dist"
},
Expand Down
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import "./styles.css";
* If you don't have one of the social sites listed, leave it as an empty string.
*/
const siteProps = {
name: "Alexandrie Grenier",
title: "Web Designer & Content Creator",
name: "Yuhao Lu",
title: "software engineer",
email: "[email protected]",
gitHub: "microsoft",
instagram: "microsoft",
Expand Down
16 changes: 8 additions & 8 deletions src/Components/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ import React from "react";
* Need an image? Check out https://unsplash.com to download a image you
* freely use on your site.
*/
import image from "../images/motion-background.jpg";
import image from "../images/mosaic.jpg";

const imageAltText = "purple and blue abstract background";

/**
* Sort description that expands on your title on the Home component.
*/
const description =
"I'm a UI/UX student studying at Barnett Technical University. I enjoy creating unique and simplistic user interfaces in creative ways.";
"I'm a CS student in NEU. I enjoy coding and learning machine learning stuff.";

/**
* List of some of skills or technologies you work on, are learning,
* passionate about, or enjoy,
*/
const skillsList = [
"Web design",
"User experience",
"Inclusive design",
"Focus group testing",
"Mobile user interfaces",
"Graphic design",
"software development",
"c++",
"machine learning",
"deep learning",
"data science",
];

/**
Expand All @@ -45,7 +45,7 @@ const skillsList = [
* about you on a professional level.
*/
const detailOrQuote =
"I am passionate about solving problems in new creative ways to drive innovation. By leveraging my UI/UX experience I continually look for new and better ways to make tech accessible by all.";
"I am passionate about solving problems in new creative ways to drive innovation. By leveraging my software engineering experience I continually look for new and better ways to make tech accessible by all.";

const About = () => {
return (
Expand Down
5 changes: 2 additions & 3 deletions src/Components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ import PropTypes from "prop-types";
* Need an image? Check out https://unsplash.com to download a photo you
* freely use on your site.
*/
import image from "../images/woman-with-tablet.jpg";

const imageAltText = "Adult female in office setting leaning against a glass wall while holding a platinum Microsoft Surface Pro 7 in tablet mode preparing to write with Microsoft Surface Pen";
import image from "../images/server-wall.jpg";
const imageAltText = "woman holding laptop standing by server room with glass wall";

const Home = ({ name, title }) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Portfolio.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import React from "react";
* Need an image? Check out https://unsplash.com to download a photo you
* freely use on your site.
*/
import image from "../images/design-desk.jpeg";
import image from "../images/design-desk.jpg";

const imageAltText = "desktop with books and laptop";

Expand Down
Binary file added src/images/design-desk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/mosaic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/server-wall.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f3fa250

Please sign in to comment.