Skip to content

Commit

Permalink
Update Company
Browse files Browse the repository at this point in the history
  • Loading branch information
tolujimoh committed Apr 16, 2024
1 parent 3dfbbf2 commit 9728da1
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "tolujimoh-portfolio"
}
}
20 changes: 20 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on merge
'on':
push:
branches:
- master
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TOLUJIMOH_PORTFOLIO }}'
channelId: live
projectId: tolujimoh-portfolio
17 changes: 17 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on PR
'on': pull_request
jobs:
build_and_preview:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TOLUJIMOH_PORTFOLIO }}'
projectId: tolujimoh-portfolio
16 changes: 16 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
7 changes: 4 additions & 3 deletions src/routes/home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {Link} from "react-router-dom";
import * as emailjs from 'emailjs-com'
import { Notyf } from "notyf";


import githubLogo from './images/icons/github-logo.svg';
import behanceLogo from './images/icons/behance-logo.svg';

Expand All @@ -28,7 +29,7 @@ type appProps = {}
type appState = {
fromEmail: string,
subject: string,
message: string
message: string,
}

// TODO: Email Implementation
Expand Down Expand Up @@ -115,7 +116,7 @@ class Home extends React.Component<appProps, appState> {
<Col md={10}>
<p>Tolu
— a
Software Engineer with passion for building products. Currently working as a Software Engineer Contractor at <a href="https://www.toptal.com#connect-exclusively-awesome-freelancers" target="_blank">Toptal</a>.</p>
Software Engineer with passion for building products. Currently working as a Software Engineer at <a href="https://www.amazon.jobs" target="_blank">Amazon</a>.</p>
</Col>
<Col md={2} className={'d-none d-md-block'}>
<div style={{width: 64}} className='float-right'>
Expand Down Expand Up @@ -210,7 +211,7 @@ class Home extends React.Component<appProps, appState> {
<Row className={'contact-title'}>
<Col lg={8}>
<p>You can find me on <a
href={'https://www.linkedin.com/in/tolulope-jimoh-945b26b7/'}
href={'https://www.linkedin.com/in/tolujimoh/'}
target={'_blank'}>LinkedIn</a>, or <a href={'https://twitter.com/tolujimoh'}
target={'_blank'}>Twitter</a>.<br/>
Go ahead and contact me via any of those communication channels, but if you’d like
Expand Down

0 comments on commit 9728da1

Please sign in to comment.