My portfolio built with Nextjs and hosted with Vercel
This portfolio was built on top of Tailwind Next JS Starter Index template which comes with built-in blogs functionality and much more!
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
);