diff --git a/.gitignore b/.gitignore index 1b33e4f..fc7da12 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,6 @@ dist/ /package-lock.json /dist src/private/data -/nbproject/private/ \ No newline at end of file +/nbproject/private/ +public/ +.cache \ No newline at end of file diff --git a/gatsby-browser.js b/gatsby-browser.js new file mode 100644 index 0000000..55a9428 --- /dev/null +++ b/gatsby-browser.js @@ -0,0 +1 @@ +import 'normalize.css'; \ No newline at end of file diff --git a/gatsby-config.js b/gatsby-config.js new file mode 100644 index 0000000..4d01f3d --- /dev/null +++ b/gatsby-config.js @@ -0,0 +1,42 @@ +const path = require('path'); +const TSConfig = require('./tsconfig.json'); + +module.exports = { + plugins: [ + { + resolve: `gatsby-source-filesystem`, + options: { + path: path.join(__dirname, 'src', 'assets', 'images'), + name: 'images' + } + }, + + 'gatsby-plugin-typescript', + 'gatsby-plugin-react-helmet', + 'gatsby-plugin-styled-components', + 'gatsby-transformer-sharp', + 'gatsby-plugin-sharp', + + { + resolve: 'gatsby-plugin-alias-imports', + options: { + alias: Object.entries(TSConfig.compilerOptions.paths).reduce((x, [key, value]) => { + let k = key.split('/').filter(f => f && f != '*').join('/'); + let v = value.find(v => v).split('/').filter(f => f && f != '*'); + return { ...x, [k]: path.resolve(__dirname, TSConfig.compilerOptions.baseUrl, ...v) }; + }, {}) + } + }, + + { + resolve: 'gatsby-plugin-google-fonts', + options: { + fonts: [ + 'Bitter', + 'Nanum Gothic' + ], + display: 'swap' + } + } + ] +} diff --git a/package.json b/package.json index 51cfa65..13f5ae8 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,11 @@ "version": "7.0.0", "description": "Personal website for Dominic \"YourWishes\" Masters.", "scripts": { + "build": "gatsby build", + "develop": "gatsby develop", + "start": "npm run develop", + "serve": "gatsby serve", + "clean": "gatsby clean" }, "repository": { "type": "git", @@ -21,7 +26,37 @@ }, "homepage": "https://domsplace.com", "dependencies": { + "@types/react-helmet": "^5.0.15", + "babel-plugin-styled-components": "^1.10.7", + "gatsby": "^2.18.12", + "gatsby-image": "^2.2.39", + "gatsby-plugin-alias-imports": "^1.0.5", + "gatsby-plugin-google-fonts": "^1.0.1", + "gatsby-plugin-react-helmet": "^3.1.21", + "gatsby-plugin-sharp": "^2.4.3", + "gatsby-plugin-styled-components": "^3.1.18", + "gatsby-plugin-typescript": "^2.1.26", + "gatsby-source-filesystem": "^2.1.46", + "gatsby-transformer-sharp": "^2.3.13", + "normalize.css": "^8.0.1", + "react": "^16.12.0", + "react-dom": "^16.12.0", + "react-helmet": "^5.2.1", + "react-hook-form": "^4.8.0", + "styled-components": "^5.0.0", + "yup": "^0.28.1" }, "devDependencies": { - } + "@types/node": "^13.5.0", + "@types/react": "^16.9.19", + "@types/react-dom": "^16.9.5", + "@types/styled-components": "^4.4.2", + "@types/yup": "^0.26.29" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] } diff --git a/src/assets/images/branding/cpp/cpp-logo.svg b/src/assets/images/branding/cpp/cpp-logo.svg new file mode 100644 index 0000000..5e11707 --- /dev/null +++ b/src/assets/images/branding/cpp/cpp-logo.svg @@ -0,0 +1,25 @@ + + + + diff --git a/src/assets/images/branding/csharp/csharp-logo.svg b/src/assets/images/branding/csharp/csharp-logo.svg new file mode 100644 index 0000000..ddc79cd --- /dev/null +++ b/src/assets/images/branding/csharp/csharp-logo.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/assets/images/branding/digitalocean/digitalocean-logo.svg b/src/assets/images/branding/digitalocean/digitalocean-logo.svg new file mode 100644 index 0000000..0026c1b --- /dev/null +++ b/src/assets/images/branding/digitalocean/digitalocean-logo.svg @@ -0,0 +1,40 @@ + + + \ No newline at end of file diff --git a/src/assets/images/branding/discord/discord-logo.svg b/src/assets/images/branding/discord/discord-logo.svg new file mode 100644 index 0000000..65c9fcc --- /dev/null +++ b/src/assets/images/branding/discord/discord-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/google-cloud/google-cloud-logo.svg b/src/assets/images/branding/google-cloud/google-cloud-logo.svg new file mode 100644 index 0000000..6fd725f --- /dev/null +++ b/src/assets/images/branding/google-cloud/google-cloud-logo.svg @@ -0,0 +1,12 @@ + + diff --git a/src/assets/images/branding/graphql/graphql-logo.svg b/src/assets/images/branding/graphql/graphql-logo.svg new file mode 100644 index 0000000..14082a5 --- /dev/null +++ b/src/assets/images/branding/graphql/graphql-logo.svg @@ -0,0 +1,64 @@ + + + + \ No newline at end of file diff --git a/src/assets/images/branding/heroku/heroku-logo.svg b/src/assets/images/branding/heroku/heroku-logo.svg new file mode 100644 index 0000000..c287cd8 --- /dev/null +++ b/src/assets/images/branding/heroku/heroku-logo.svg @@ -0,0 +1,18 @@ + + diff --git a/src/assets/images/branding/java/java-logo.svg b/src/assets/images/branding/java/java-logo.svg new file mode 100644 index 0000000..28d4a95 --- /dev/null +++ b/src/assets/images/branding/java/java-logo.svg @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/jquery/jquery-logo.svg b/src/assets/images/branding/jquery/jquery-logo.svg new file mode 100644 index 0000000..621989a --- /dev/null +++ b/src/assets/images/branding/jquery/jquery-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/lwjgl/lwjgl-logo.svg b/src/assets/images/branding/lwjgl/lwjgl-logo.svg new file mode 100644 index 0000000..3410765 --- /dev/null +++ b/src/assets/images/branding/lwjgl/lwjgl-logo.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/assets/images/branding/monogame/monogame-logo.svg b/src/assets/images/branding/monogame/monogame-logo.svg new file mode 100644 index 0000000..226a1d2 --- /dev/null +++ b/src/assets/images/branding/monogame/monogame-logo.svg @@ -0,0 +1,30 @@ + + + + \ No newline at end of file diff --git a/src/assets/images/branding/mysql/mysql-logo.svg b/src/assets/images/branding/mysql/mysql-logo.svg new file mode 100644 index 0000000..98ebde9 --- /dev/null +++ b/src/assets/images/branding/mysql/mysql-logo.svg @@ -0,0 +1,47 @@ + + + diff --git a/src/assets/images/branding/neto/neto-logo.svg b/src/assets/images/branding/neto/neto-logo.svg new file mode 100644 index 0000000..fad1b20 --- /dev/null +++ b/src/assets/images/branding/neto/neto-logo.svg @@ -0,0 +1,13 @@ + + + \ No newline at end of file diff --git a/src/assets/images/branding/nodejs/nodejs-logo.svg b/src/assets/images/branding/nodejs/nodejs-logo.svg new file mode 100644 index 0000000..b51f302 --- /dev/null +++ b/src/assets/images/branding/nodejs/nodejs-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/opengl/opengl-logo.svg b/src/assets/images/branding/opengl/opengl-logo.svg new file mode 100644 index 0000000..84c5d12 --- /dev/null +++ b/src/assets/images/branding/opengl/opengl-logo.svg @@ -0,0 +1,18 @@ + diff --git a/src/assets/images/branding/pgsql/pgsql-logo.svg b/src/assets/images/branding/pgsql/pgsql-logo.svg new file mode 100644 index 0000000..8666f75 --- /dev/null +++ b/src/assets/images/branding/pgsql/pgsql-logo.svg @@ -0,0 +1,20 @@ + + + \ No newline at end of file diff --git a/src/assets/images/branding/php/php-logo.svg b/src/assets/images/branding/php/php-logo.svg new file mode 100644 index 0000000..e4f137c --- /dev/null +++ b/src/assets/images/branding/php/php-logo.svg @@ -0,0 +1,96 @@ + + \ No newline at end of file diff --git a/src/assets/images/branding/react/react-logo.svg b/src/assets/images/branding/react/react-logo.svg new file mode 100644 index 0000000..b3887f3 --- /dev/null +++ b/src/assets/images/branding/react/react-logo.svg @@ -0,0 +1,37 @@ + + + diff --git a/src/assets/images/branding/redux/redux-logo.svg b/src/assets/images/branding/redux/redux-logo.svg new file mode 100644 index 0000000..62f4d5c --- /dev/null +++ b/src/assets/images/branding/redux/redux-logo.svg @@ -0,0 +1,22 @@ + + + diff --git a/src/assets/images/branding/shopify/shopify-logo.svg b/src/assets/images/branding/shopify/shopify-logo.svg new file mode 100644 index 0000000..7c88138 --- /dev/null +++ b/src/assets/images/branding/shopify/shopify-logo.svg @@ -0,0 +1,23 @@ + + + diff --git a/src/assets/images/branding/twitch/twitch-logo.svg b/src/assets/images/branding/twitch/twitch-logo.svg new file mode 100644 index 0000000..905e364 --- /dev/null +++ b/src/assets/images/branding/twitch/twitch-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/twitter/twitter-logo.svg b/src/assets/images/branding/twitter/twitter-logo.svg new file mode 100644 index 0000000..2832e7b --- /dev/null +++ b/src/assets/images/branding/twitter/twitter-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/branding/typescript/typescript-logo.svg b/src/assets/images/branding/typescript/typescript-logo.svg new file mode 100644 index 0000000..bbf2809 --- /dev/null +++ b/src/assets/images/branding/typescript/typescript-logo.svg @@ -0,0 +1,40 @@ + diff --git a/src/assets/images/branding/unity/unity-logo.svg b/src/assets/images/branding/unity/unity-logo.svg new file mode 100644 index 0000000..88622dd --- /dev/null +++ b/src/assets/images/branding/unity/unity-logo.svg @@ -0,0 +1,11 @@ + + + diff --git a/src/assets/images/branding/webpack/webpack-logo.svg b/src/assets/images/branding/webpack/webpack-logo.svg new file mode 100644 index 0000000..8f7eaa5 --- /dev/null +++ b/src/assets/images/branding/webpack/webpack-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/people/dominic/head.png b/src/assets/images/people/dominic/head.png new file mode 100644 index 0000000..7451356 Binary files /dev/null and b/src/assets/images/people/dominic/head.png differ diff --git a/src/assets/images/websites/bundlfresh.jpg b/src/assets/images/websites/bundlfresh.jpg new file mode 100644 index 0000000..407ee02 Binary files /dev/null and b/src/assets/images/websites/bundlfresh.jpg differ diff --git a/src/assets/images/websites/cocksox.jpg b/src/assets/images/websites/cocksox.jpg new file mode 100644 index 0000000..a9d4e5d Binary files /dev/null and b/src/assets/images/websites/cocksox.jpg differ diff --git a/src/assets/images/websites/domsPlace.jpg b/src/assets/images/websites/domsPlace.jpg new file mode 100644 index 0000000..e568b28 Binary files /dev/null and b/src/assets/images/websites/domsPlace.jpg differ diff --git a/src/assets/images/websites/earjobs.jpg b/src/assets/images/websites/earjobs.jpg new file mode 100644 index 0000000..2df533c Binary files /dev/null and b/src/assets/images/websites/earjobs.jpg differ diff --git a/src/assets/images/websites/kopalife.jpg b/src/assets/images/websites/kopalife.jpg new file mode 100644 index 0000000..55377de Binary files /dev/null and b/src/assets/images/websites/kopalife.jpg differ diff --git a/src/assets/images/websites/solinvictus.jpg b/src/assets/images/websites/solinvictus.jpg new file mode 100644 index 0000000..76388d6 Binary files /dev/null and b/src/assets/images/websites/solinvictus.jpg differ diff --git a/src/assets/images/websites/stateofescape.jpg b/src/assets/images/websites/stateofescape.jpg new file mode 100644 index 0000000..5fdb7bc Binary files /dev/null and b/src/assets/images/websites/stateofescape.jpg differ diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx new file mode 100644 index 0000000..fbc0d01 --- /dev/null +++ b/src/components/Layout.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { Header } from '@components/navigation/Header'; +import { Background } from './layout/Background'; +import { Footer } from './navigation/Footer'; +import styled, { createGlobalStyle } from 'styled-components'; +import { Colors, Fonts, FontWeights, FontSizes, Gutters } from '@settings/all'; +import { graphql } from 'gatsby'; +import { BodyStyles, AllElementStyles } from '@styles'; +import { AnchorStyles } from '@styles/anchor'; + +const GlobalStyles = createGlobalStyle` + ${AllElementStyles} + ${BodyStyles} + ${AnchorStyles} +`; + +const LayoutMain = styled.main` + margin-top: ${Gutters.extraExtraLarge}; +`; + +export const Layout = (props:{children:React.ReactNode}) => ( +
+ Thank you for your message, I will be in touch shortly to follow up + (generally within a couple of days). +
++ In the meantime why not check out my social channels? +
+ > : ( + + ) +} \ No newline at end of file diff --git a/src/components/layout/Background.tsx b/src/components/layout/Background.tsx new file mode 100644 index 0000000..3a00b0b --- /dev/null +++ b/src/components/layout/Background.tsx @@ -0,0 +1,68 @@ +import * as React from 'react'; +import styled, { keyframes, css } from 'styled-components'; +import { Easings, Durations } from '@settings/all'; + +const BackgroundWrapper = styled.div` + width: 100%; + height: 100%; + position: fixed; + left: 0; + top: 0; + z-index: -1; +`; + +const BackgroundImage = styled.svg` + display: block; + object-fit: cover; + min-width: 100%; + min-height: 100%; +`; + +const BackgroundGradient = styled.stop<{color:string}>(props => ` + stop-color:${props.color}; + stop-opacity:1; +`); + +const BackgroundFadeIn = keyframes` + from { + opacity: 0; + transform: translateY(12%); + } + + to { + opacity: 0.4; + transform: translateY(0%); + } +`; + +const BackgroundCircle = styled( (props:{ + layer:number, fill:string, className?:string +}) =>+ Feel free to reach out, I usually respond within a few days. +
+ ++ If you prefer to call, then leave your phone number and what times + you're available and I'll get in touch! +
+ ++ Looking for something a bit more instant? Get in touch with me via + social media. +
+ + {/*+ I'm just a nerd with a passion for coding, coffee, and video games. + Programming since before the internet was cool. +
} + /> + ++ I am a programmer, born and bred. I have been programming since I + was around 12 years old and continue to advance my skills more and + more everyday. +
++ Programming is my work and my passion. With over { new Date().getFullYear() - 2007 } years of experience, + and countless lines of code written, there isn't much I can't develop. +
+ >} + /> + ++ I'm currently working full-time as a Senior Full-Stack Developer for + Shopify Plus at Process Creative. + I have been working with the platform every day for + over { new Date().getFullYear() - 2017} years, and enjoy working with + it immensely. +
+ ++ Working with Liquid, REST and GraphQL App Development and general + Shopify tools development, I have had the privilage of working with + over 40 different Shopify Plus clients, and over 50 Shopify core + clients. +
+ ++ Despite Shopify's seemingly limited development environment, I have + been able to make it do tricks thought impossible. I love finding + unique solution's to Shopify's limitations, and will continuously + find ways to surprise everyone, including myself. +
+ >} + images={[ + { to: '//bundlfresh.com.au', image: data.bundleImage.childImageSharp, delay: 'short' }, + { to: '//cocksox.com', image: data.cocksoxImage.childImageSharp, delay: 'medium' }, + { to: '//www.stateofescape.com', image: data.soeImage.childImageSharp, delay: 'long' }, + ]} + /> + + ++ I have spent over { new Date().getFullYear() - 2010 } years working + with both modern and traditional web tech stacks, including NodeJS, + TypeScript, React, ES6, Webpack, Babel, SCSS, PHP, ASP, SQL and more. +
+ ++ My specialty is making beautiful and interactive online web experiences. + Why must web suck? I am to prove that it doesn't always have to. +
+ > + } /> + +
+ Want to get in touch, pick my brain or just have a chat?
+ Head over to my contact page and feel free to reach out.
+
Effective date: June 27, 2018
++ domsPlace ("us", "we", or "our") operates + the https://domsplace.com website (the + "Service"). +
+ ++ This page informs you of our policies regarding the collection, use, and + disclosure of personal data when you use our Service and the choices you + have associated with that data. +
+ ++ We use your data to provide and improve the Service. By using the + Service, you agree to the collection and use of information in + accordance with this policy. Unless otherwise defined in this Privacy + Policy, terms used in this Privacy Policy have the same meanings as in + our Terms and Conditions, accessible from + https://domsplace.com + +
+ + ++ We collect several different types of information for various purposes + to provide and improve our Service to you. +
+ ++ While using our Service, we may ask you to provide us with certain + personally identifiable information that can be used to contact or + identify you ("Personal Data"). Personally identifiable information may + include, but is not limited to: +
++ We may also collect information how the Service is accessed and used = + ("Usage Data"). This Usage Data may include information such as your + computer's Internet Protocol address (e.g. IP address), browser type, + browser version, the pages of our Service that you visit, the time and + date of your visit, the time spent on those pages, unique device + identifiers and other diagnostic data. +
+ ++ We use cookies and similar tracking technologies to track the activity + on our Service and hold certain information. +
++ Cookies are files with small amount of data which may include an + anonymous unique identifier. Cookies are sent to your browser from a + website and stored on your device. Tracking technologies also used are + beacons, tags, and scripts to collect and track information and to + improve and analyze our Service. +
++ You can instruct your browser to refuse all cookies or to indicate when + a cookie is being sent. However, if you do not accept cookies, you may + not be able to use some portions of our Service. +
+Examples of Cookies we use:
+domsPlace uses the collected data for various purposes:
+Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from your jurisdiction.
+If you are located outside Australia and choose to provide information to us, please note that we transfer the data, including Personal Data, to Australia and process it there.
+Your consent to this Privacy Policy followed by your submission of such information represents your agreement to that transfer.
+domsPlace will take all steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy and no transfer of your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of your data and other personal information.
+ +domsPlace may disclose your Personal Data in the good faith belief that such action is necessary to:
+The security of your data is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Data, we cannot guarantee its absolute security.
+ +We may employ third party companies and individuals to facilitate our Service ("Service Providers"), to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.
+These third parties have access to your Personal Data only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.
+ +We may use third-party Service Providers to monitor and analyze the use of our Service.
+Google Analytics
+Google Analytics is a web analytics service offered by Google that tracks and reports website traffic. Google uses the data collected to track and monitor the use of our Service. This data is shared with other Google services. Google may use the collected data to contextualize and personalize the ads of its own advertising network.
+You can opt-out of having made your activity on the Service available to Google Analytics by installing the Google Analytics opt-out browser add-on. The add-on prevents the Google Analytics JavaScript (ga.js, analytics.js, and dc.js) from sharing information with Google Analytics about visits activity.
+For more information on the privacy practices of Google, please visit the Google Privacy & Terms web page: https://policies.google.com/privacy?hl=en +
+Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party's site. We strongly advise you to review the Privacy Policy of every site you visit.
+We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.
+ + +Our Service does not address anyone under the age of 18 ("Children").
+We do not knowingly collect personally identifiable information from anyone under the age of 18. If you are a parent or guardian and you are aware that your Children has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data from children without verification of parental consent, we take steps to remove that information from our servers.
+ + +We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.
+We will let you know via email and/or a prominent notice on our Service, prior to the change becoming effective and update the "effective date" at the top of this Privacy Policy.
+You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.
+ + ++ If you have any questions about this Privacy Policy, please contact us + by visiting this page on our + website: https://domsplace.com/contact +
+