mirror of
https://github.com/jwetzell/showbridge-www.git
synced 2026-08-20 04:19:05 +00:00
add basic skeleton for site
This commit is contained in:
Generated
+1880
File diff suppressed because it is too large
Load Diff
@@ -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 |
@@ -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>
|
||||
@@ -0,0 +1,8 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ['src/**/*.html'],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
@@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
Reference in New Issue
Block a user