Skip to content

Commit

Permalink
Merge pull request #12 from sydrawat01/feature
Browse files Browse the repository at this point in the history
Add a project page/section
  • Loading branch information
sydrawat01 authored Aug 22, 2022
2 parents c4a33e5 + dc181e9 commit 67db238
Show file tree
Hide file tree
Showing 23 changed files with 344 additions and 110 deletions.
Binary file removed content/images/aang-avatar.jpg
Binary file not shown.
Empty file added content/images/assets/.gitkeep
Empty file.
Binary file removed content/images/assets/movie-1/fly.jpg
Binary file not shown.
Binary file removed content/images/assets/movie-1/hand.jpg
Binary file not shown.
Binary file removed content/images/assets/movie-1/naoufel.jpg
Binary file not shown.
Binary file removed content/images/assets/movie-1/recorder.jpg
Binary file not shown.
Binary file removed content/images/patreon-user.jpg
Binary file not shown.
58 changes: 0 additions & 58 deletions content/thumbnails/screen-2.svg

This file was deleted.

41 changes: 41 additions & 0 deletions content/thumbnails/star.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions data/SiteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const config = {
dateFromFormat: 'YYYY-MM-DD',
dateFormat: 'MMMM Do, YYYY',
userName: 'Siddharth',
userEmail: 'sydrawat@gmail.com',
userEmail: 'siddharth.rawat94@gmail.com',
userTwitter: 'sydrawat',
menuLinks: [
{
Expand All @@ -24,8 +24,8 @@ const config = {
link: '/blog/',
},
{
name: 'Contact',
link: '/contact/',
name: 'Projects',
link: '/projects/',
},
],
themeColor: '#C7A27C', // Used for setting manifest and progress theme colors.
Expand Down
5 changes: 3 additions & 2 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,15 @@ module.exports = {
background_color: config.backgroundColor,
theme_color: config.themeColor,
display: 'minimal-ui',
icon: 'static/logos/logo-1024.png',
icons: [
{
src: '/logos/logo-512.png',
src: 'static/logos/logo-512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/logos/logo-1024.png',
src: 'static/logos/logo-1024.png',
sizes: '1024x1024',
type: 'image/png',
},
Expand Down
1 change: 1 addition & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
command = "yarn build"
[build.environment]
YARN_VERSION = "1.22.4"
NODE_VERSION = "14.15.1"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sydrawat",
"description": "Sid's website built with Gatsby, React & GraphQL",
"version": "1.3.1",
"version": "1.3.2",
"author": "Siddharth Rawat <siddharth.rawat94@gmail.com>",
"dependencies": {
"@mdx-js/mdx": "^1.6.5",
Expand Down
18 changes: 11 additions & 7 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import React from 'react';
import { Link } from 'gatsby';
import netlify from '../../../content/images/netlify.png';
import gatsby from '../../../content/thumbnails/gatsby.png';
import github from '../../../content/images/github.png';
import ig from '../../../content/images/ig.svg';
import github from '../../../content/thumbnails/github.svg';
import mail from '../../../content/thumbnails/mail.svg';
import linkedin from '../../../content/thumbnails/linkedin.svg';
import twitter from '../../../content/images/twitter.svg';

const Footer = () => {
Expand All @@ -23,22 +24,25 @@ const Footer = () => {
RSS
</a>
</div>
<div>
<div className="contact-container">
<a
href="https://github.com/sydrawat01"
title="Open-source on GitHub"
title="Open-sourcerer on GitHub"
target="_blank"
rel="noopener noreferrer"
>
<img src={github} className="footer-img" alt="GitHub" />
</a>
<a
href="https://www.instagram.com/sydrawat"
title="Artsy me!"
href="https://www.linkedin.com/siddharth-rawat"
title="Mr. Professional"
target="_blank"
rel="noopener noreferrer"
>
<img src={ig} className="footer-img" alt="Netlify" />
<img src={linkedin} className="footer-img" alt="LinkedIn" />
</a>
<a href="mailto:siddharth.rawat94@gmail.com" target="_blank" rel="noopener noreferrer">
<img src={mail} className="footer-img" alt="Mail" />
</a>
<a
href="https://www.netlify.com/"
Expand Down
24 changes: 0 additions & 24 deletions src/components/Movie/Rating.jsx

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/Navigation/Navigation.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import { Link } from 'gatsby';
import board from '../../images/stickie.svg';
import stickie from '../../images/stickie.svg';
import sun from '../../images/sun.svg';
import moon from '../../images/moon.svg';
import ThemeContext from '../../context/ThemeContext';
Expand Down Expand Up @@ -41,7 +41,7 @@ export default class Navigation extends Component {
<div className="nav-container">
<div className="brand">
<Link to="/">
<img src={board} className="favicon" alt="MotherBoard" />
<img src={stickie} className="favicon" alt="stickie" />
<span className="text">Siddharth Rawat</span>
</Link>
</div>
Expand Down
48 changes: 48 additions & 0 deletions src/data/projectList.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
const projectsList = [
{
name: 'React Boilerplate',
date: '2021',
slug: 'react-boilerplate',
tagline: 'A free, open source React template with Redux Toolkit, TypeScript & React Router.',
url: 'https://boilerplate-react-ts.web.app/',
},
{
name: 'React Pocket Notes',
date: '2021',
tagline: 'Pocket-sized notes for React, TypeScript & Redux Toolkit.',
url: 'https://sydrawat.gitbook.io/react/',
},
{
name: "Bob's Burgers",
slug: 'bobs-burgers',
tagline:
"Bob's burgers is a simple burger builder app, that lets you sculpt your own burger by selecting individual ingredients. Includes Typescript with React Router and Redux Toolkit!",
url: 'https://bobs-burgers-f1443.web.app/',
},
{
name: 'Bon-Apetit',
slug: 'bon-apetit',
tagline:
'This web-app is focused on logging all your food hunting activites across the globe! Add reviews, comments and provide ratings to the restaurants. Built using TypeScript, NodeJS, MongoDB and ReactJS',
},
{
name: 'Hyper Moonlite',
slug: 'hyper-moonlite',
tagline: 'Hyper term moonlite theme. Simple and easy to use.',
url: 'https://www.npmjs.com/package/hyper-moonlite',
},
{
name: 'Firefox Moonlite',
slug: 'firefox-moonlite',
tagline: 'A minimal theme for FireFox, heavily resembles my terminal. Join the dark side.',
url: 'https://addons.mozilla.org/en-US/firefox/addon/hyper-ff-moonlite/',
},
{
name: 'QR-WiFi',
slug: 'qrifi',
tagline: 'Generate a QR code for your WiFi!',
url: 'https://qr-ifi.web.app/',
},
];

export default projectsList;
2 changes: 1 addition & 1 deletion src/pages/about.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class Me extends Component {
</p>
<h3>Getting to know me</h3>
<p>
I&apos;m currently purusing my Master&apos;s degree in Information Systems from
I&apos;m currently pursuing my Master&apos;s degree in Information Systems from
<a href="https://wwww.northeastern.edu/"> Northeastern University, Boston.</a>
</p>
<p>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import config from '../../data/SiteConfig';
import github from '../../content/thumbnails/github.svg';
import twitter from '../../content/images/twitter.svg';
import linkedin from '../../content/thumbnails/linkedin.svg';
import mail from '../../content/thumbnails/mail.svg';
import ig from '../../content/images/ig.svg';
import reddit from '../../content/thumbnails/reddit.svg';

export default class Contact extends Component {
Expand Down Expand Up @@ -48,11 +48,11 @@ export default class Contact extends Component {
<img src={linkedin} alt="Linkedin" />
</a>
<a
href="mailto:siddharth.rawat94@gmail.com"
href="https://www.instagram.com/sydrawat"
target="_blank"
rel="noopener noreferrer"
>
<img src={mail} alt="Mail" />
<img src={ig} alt="instagram" />
</a>
</div>
<h4 style={{ fontWeight: 'lighter', fontSize: `${1.3}rem` }}>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ const IndexPage = () => (
<div className="flashcard-section">
<img src={sid} className="flashcard-avatar" alt="Sid" />
<div>
<h3>Sid</h3>
<p>Northeastern &apos;23</p>
<h3>Siddharth Rawat</h3>
<h3>Northeastern &apos;23</h3>
<p>
<span role="img" aria-label="ramen">
🍜
Expand Down
Loading

0 comments on commit 67db238

Please sign in to comment.