add basic skeleton for site

This commit is contained in:
2024-04-08 19:03:46 -05:00
commit 225889c24a
6 changed files with 1934 additions and 0 deletions
+1880
View File
File diff suppressed because it is too large Load Diff
+29
View File
@@ -0,0 +1,29 @@
{
"name": "@showbridge/site",
"version": "1.0.0",
"description": "www.showbrigde.io",
"main": "index.js",
"scripts": {
"tailwind": "tailwindcss build -i tailwind.css -o src/assets/css/tailwind.css",
"dev": "http-server src/",
"tailwind:dev": "tailwindcss build -i tailwind.css -o src/assets/css/tailwind.css --watch"
},
"author": {
"name": "Joel Wetzell",
"email": "me@jwetzell.com",
"url": "https://jwetzell.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwetzell/showbridge.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/jwetzell/showbridge/issues"
},
"homepage": "https://github.com/jwetzell/showbridge#readme",
"devDependencies": {
"http-server": "^14.1.1",
"tailwindcss": "^3.4.3"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

+14
View File
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>showbridge</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico" />
<link href="assets/css/tailwind.css" rel="stylesheet" />
</head>
<body class="h-screen w-screen flex flex-col justify-center items-center">
<a class="w-40 h-40 bg-blue-400" href="https://github.com/jwetzell/showbridge"> </a>
<div class="flex"></div>
</body>
</html>
+8
View File
@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['src/**/*.html'],
theme: {
extend: {},
},
plugins: [],
};
+3
View File
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;