diff --git a/gatsby/src/pages/index.js b/gatsby/src/pages/index.js index 2c47e18..1e587f1 100644 --- a/gatsby/src/pages/index.js +++ b/gatsby/src/pages/index.js @@ -12,11 +12,11 @@ const IndexPage = ({ data }) => { console.log('images', images) return ( - <main className=""> - <section className="m-2 py-6 intro flex flex-col justify-center flex-auto bg-black rounded-xl"> + <main className="font-serif"> + <section className="m-2 h-1/2 py-6 intro flex flex-col justify-center flex-auto bg-black rounded-xl"> <div className="mx-auto px-4 md:px-2 w-full md:w-8 "> - <h1 className="text-6xl text-pink-600">Chuck Dries</h1> - <h2 className="text-blue-300">Software Engineer in web & VR</h2> + <h1 className="italic font-semibold text-6xl text-pink-600">Chuck Dries</h1> + <h2 className="text-blue-300 text-2xl">Software Engineer in web & VR</h2> <ul> <li>Software Developer, <span className="text-gray-300 italic">Axosoft</span></li> <li><a className="hover:text-pink-400 underline" href="mailto:chuck@chuckdries.com">chuck@chuckdries.com</a> / <span>602.618.0414</span></li> diff --git a/gatsby/tailwind.config.js b/gatsby/tailwind.config.js index 8e357cc..2d4eeb8 100644 --- a/gatsby/tailwind.config.js +++ b/gatsby/tailwind.config.js @@ -1,3 +1,5 @@ +const defaultTheme = require('tailwindcss/defaultTheme') + module.exports = { purge: ['./src/**/*.{js,jsx,ts,tsx}'], darkMode: 'media', // or 'media' or 'class' @@ -10,7 +12,12 @@ module.exports = { '5': '32px', '6': '48px', '7': '80px', - '8': '700px' + '8': '800px' + }, + fontFamily: { + ...defaultTheme.fontFamily, + // serif: ['Didot', 'Didot LT', 'STD', 'Hoefler Text' , 'Garamond', 'Times New Roman', 'serif'] + serif: ['Baskerville', 'Baskerville Old Face', 'Hoefler Text' , 'Garamond', 'Times New Roman', 'serif'] }, extend: {}, },