Skip to content

Commit

Permalink
added morez
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottN13 committed Apr 18, 2024
1 parent 5b6841c commit 86e6bc7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 11 deletions.
35 changes: 25 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,36 @@
</head>
<body>
<header>
<div class="navbar bg-base-100">
<h1 class="text-success text-xl join-item join-horizontal">scottnewman.xyz</h1>
<div role="tablist" class="tabs tabs-bordered">
<a role="tab" class="tab tab-active link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">About Me</a>
<a role="tab" class="tab link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">funny links <span class="badge badge-sm badge-warning">new links added!</span></a>
<a role="tab" class="tab link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">guides</a>
<nav class="navbar navbar-center bg-base-100">
<div class="flex-1">

<div tabindex="0" role="button" class="btn btn-ghost btn-disabled btn-circle avatar">
<div class="w-10 rounded-full">
<img alt="pfp" src=""/>
</div>
</div>

<h1 class="text-success text-xl join-item join-horizontal p-2">scottnewman.xyz</h1>
</div>
</div>
<div role="tablist" class="tabs tabs-bordered p-3">
<a role="tab" class="tab tab-active link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">About Me</a>
<a role="tab" class="tab link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">funny links</a>
<a role="tab" class="tab link-hover join-item join-horizontal" href="https://scottnewman.xyz/404.html">guides</a>
</div>
</nav>
</header>

website is wip lmao
<div class="card w-96 bg-base-300 flex-1 center shadow-xl text-base-content p-10px margin-auto">
<div class="card-body">
<h2 class="card-title">Hello! I'm Scott!</h2>
<p>This is a work in progress website. Please note that not all elements are present, also the navbar throws you at a 404.</p>
</div>
</div>


<footer class="footer footer p-4 bg-base-300 text-base-content">
<footer class="footer absolute bottom-0 p-4 bg-base-100 text-base-content text-xs bg-opacity-1">
<aside>
<p>Copyleft scottnewman.xyz 2024 - all lefts unreserved</p>
<h4>Copyleft scottnewman.xyz 2024 - all lefts unreserved</h4>
<a>sign your life away!</a>
</aside>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// future
var toast = document.getElementById('wip');
20 changes: 20 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
//...

// add daisyUI plugin
plugins: [require("daisyui")],

// daisyUI config (optional - here are the default values)
daisyui: {
themes: false, // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
darkTheme: "dark", // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
utils: true, // adds responsive and modifier utility classes
prefix: "", // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
themeRoot: ":root", // The element that receives theme color CSS variables
},

//...
}

0 comments on commit 86e6bc7

Please sign in to comment.