<- Blog

My First Blog Post

Mert Turkmenoglu, 8/3/2023 1 min read

A squirrel sitting on a tree branch.

Photo by Ilnur Kalimullin on Unsplash


This is my first blog post. Welcome.

I built this website using Astro, TailwindCSS, and MDX. I’m still trying a lot of things, so be prepared for changes.

You want to see something cool? Here’s my current Tailwind config file:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
  darkMode: 'class',
  theme: {
    extend: {
      colors: {
        'primary': '#be185d',
        'midnight': '#1a1a1a',
      },
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
  ],
}
IT DISPLAYS IT AS JAVASCRIPT CODE. HOW COOL IS THAT?

And the text above should be in italics and color should be amber. So cool. It’s squirrel-like cool. I like squirrels btw.

If you want to know more about the tech stack, you can check out my GitHub repo.