Git Product home page Git Product logo

portfolio's Introduction

Personal Portfolio

Made with:

Vue.js Vite TailwindCSS Vercel

portfolio's People

Contributors

cbarkr avatar

Watchers

 avatar

portfolio's Issues

Integrate Quartz

I really like Obsidian. It has changed the way I take notes and organize my thoughts, and I think it would be nice to recreate that on this site. Quartz brings Obsidian-like UI to the web, which would allow me to organize and share my thoughts in the same way, without needing to reinvent the wheel.

The "words" section is quite terrible, I must admit, and the effort required to make it into something nice doesn't quite seem worth it when options like Quartz are available.

Here's the tricky part though: the styling must be consistent with the rest of the site. The config, however, only mentions two relevant styling points:

  • typography: "Any font available on Google Fonts works", but this site uses Geist which I quite like and would like to keep. Hopefully there's a way to use local fonts
  • colors: Here it should be pretty trivial to use the colours used in the rest of the site
    As for the components themselves, you can create your own, though this might be a bit of a challenge in and of itself

MD renderer doesn't render unordered lists correctly

uls are rendered as ols due to the list style types that are unconditionally set for all lists

Currently, the list renderer is as follows:

list(body, ordered) {
    const tag = ordered ? "ol" : "ul"
    const template = (classes) => 
    `
      <${tag} class="${classes}">
        ${body}
      </${tag}>
    `
    return template("list-decimal list-inside mb-4")
  },

Note that list-decimal is passed to template regardless of the tag being ol or ul

Vue router not routing in Vercel

When routing directly to any URL that is not the root, Vercel throws a 404 instead of routing. For example, navigating to cbarkr.com works, and navigating to cbarkr.com/photos using the in-app nav works, but reaching this page by any other means does not. Further, refreshing the page will also throw a 404.

See:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.