/francismasha.com

My portfolio in a nutshell

Primary LanguageMDXMIT LicenseMIT

francismasha.com

My portfolio built with Nextjs and hosted with Vercel

Make it your own!

This portfolio was built on top of Tailwind Next JS Starter Index template which comes with built-in blogs functionality and much more!

Database Schema

CREATE TABLE redirects
(
    id          SERIAL PRIMARY KEY,
    source      VARCHAR(255) NOT NULL,
    destination VARCHAR(255) NOT NULL,
    permanent   BOOLEAN      NOT NULL
);

CREATE TABLE views
(
    slug  VARCHAR(255) PRIMARY KEY,
    count INT NOT NULL
);