Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mine #153

Closed
wants to merge 5 commits into from
Closed

mine #153

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/azure-static-web-apps-happy-pebble-0bc8a4703.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Azure Static Web Apps CI/CD

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main

jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v3
with:
submodules: true
lfs: false
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_PEBBLE_0BC8A4703 }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/" # App source code path
api_location: "api" # Api source code path - optional
output_location: "dist" # Built app content directory - optional
###### End of Repository/Build Configurations ######

close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:
- name: Close Pull Request
id: closepullrequest
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_PEBBLE_0BC8A4703 }}
action: "close"
16 changes: 16 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Greetings

on: [pull_request_target, issues]

jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Message that will be displayed on users' first issue"
pr-message: "Message that will be displayed on users' first pull request"
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": "https://github.com/doyinsolass/FirstRepo",
"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://github.com/doyinsolass/FirstRepo'",
"predeploy": "npm run build-gh",
"deploy": "gh-pages -d dist"
},
Expand Down
16 changes: 8 additions & 8 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ 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",
email: "alex@example.com",
gitHub: "microsoft",
instagram: "microsoft",
linkedIn: "satyanadella",
name: "Doyinsola Sotunbo",
title: "2nd Year Computer Science Student",
email: "dsotunbo127@gmail.com",
gitHub: "https://github.com/doyinsolass",
instagram: "",
linkedIn: "https://ie.linkedin.com/in/doyinsola-sotunbo-027118250",
medium: "",
twitter: "microsoft",
youTube: "Code",
twitter: "",
youTube: "",
};

const primaryColor = "#4E567E";
Expand Down
18 changes: 9 additions & 9 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/sunset-3495108_1280.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 Computer Science & Software Engineering student studying at National University of Ireland Maynooth. I spend my time creating websites and creating user interfaces";

/**
* 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",
"Web Development",
"User Experience",
"UI Design",
"Software Testing",
"Mobile User Interface",
"DAta Structures & Algoritms",
];

/**
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 enjoy Software Testing and Software Engineering. These 2 have been my passion since I was a child.";

const About = () => {
return (
Expand Down
3 changes: 1 addition & 2 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Footer = (props) => {
gap: "2.5rem",
padding: "5rem 0 3rem",
backgroundColor: primaryColor,
width: "100vw"
width: "100vw",
}}
>
<div
Expand Down Expand Up @@ -135,7 +135,6 @@ Footer.propTypes = {
primaryColor: PropTypes.string,
twitter: PropTypes.string,
youTube: PropTypes.string,

};

export default Footer;
2 changes: 1 addition & 1 deletion src/Components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ 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";
import image from "../images/desk-1140699_1280.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";

Expand Down
20 changes: 10 additions & 10 deletions 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/iphone-1852901_1280.jpg";

const imageAltText = "desktop with books and laptop";

Expand All @@ -31,16 +31,16 @@ const imageAltText = "desktop with books and laptop";
*/
const projectList = [
{
title: "10 Things To Know About Azure Static Web Apps 🎉",
title: "Introduction to Java🎉",
description:
"Collaboration to create a beginner friendly article to help explain Azure Static Web Apps and tooling to get started.",
url: "https://dev.to/azure/10-things-to-know-about-azure-static-web-apps-3n4i",
"Used to create an understanding of Java as a language",
url: "https://www.w3schools.com/java/java_output.asp",
},
{
title: "Web Development for Beginners",
title: "Guide to Web Development",
description:
"Contributed sketch note imagery to accompany each lesson. These help provide visual representation of what is being taught.",
url: "https://github.com/microsoft/web-dev-for-beginners",
"A short guide on web development",
url: "https://blog.hubspot.com/website/website-development",
},
{
title: "My Resume Site",
Expand All @@ -49,10 +49,10 @@ const projectList = [
url: "https://github.com/microsoft/workshop-library/tree/main/full/build-resume-website",
},
{
title: "GitHub Codespaces and github.dev",
title: "GitHub",
description:
"Video interview to explain when to use GitHub.dev versus GitHub Codespaces, and how best to use each tool.",
url: "https://www.youtube.com/watch?v=c3hHhRME_XI",
"My Github and my projects will be linked down below",
url: "https://github.com/doyinsolass",
},
];

Expand Down
Binary file added src/images/desk-1140699_1280.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/iphone-1852901_1280.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/sunset-3495108_1280.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.