Skip to content

Commit

Permalink
COLOR
Browse files Browse the repository at this point in the history
  • Loading branch information
cohenaj194 committed Jul 12, 2024
1 parent 0894cc1 commit 0646109
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 16 deletions.
32 changes: 16 additions & 16 deletions app/routes/_public._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ export default function Index() {
<>
<main className="flex-1">
<Banner />
<section className="bg-gray-100 py-12">
<section className="bg-gradient-to-r from-purple-500 to-blue-500 py-12 text-white">
<div className="max-w-7xl mx-auto px-4 sm:px-6 md:px-8">
<h1 className="text-4xl font-bold text-blue-900 dark:text-gray-100 text-center">
<h1 className="text-4xl font-bold text-center">
Saddlebag Exchange: FFXIV Marketboard Prices, WoW Auctionhouse
</h1>
<p className="text-lg text-slate-700 dark:text-gray-300 text-center mt-4">
<p className="text-lg text-center mt-4">
Welcome to the Saddlebag Exchange. Find helpful tools to get ahead
in your favorite MMO's.
</p>
Expand All @@ -73,22 +73,22 @@ export default function Index() {
About Us
</h2>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-10">
<div>
<h3 className="text-2xl font-semibold text-blue-800 dark:text-gray-200 mb-4">
<div className="bg-purple-100 p-6 rounded-lg shadow-lg">
<h3 className="text-2xl font-semibold text-purple-800 mb-4">
For Final Fantasy XIV Players:
</h3>
<ul className="list-disc list-inside space-y-4 text-slate-700 dark:text-gray-300">
<ul className="list-disc list-inside space-y-4 text-purple-700">
<li>
Get real-time FFXIV Discord alerts for{' '}
<a
href="https://saddlebagexchange.com/price-sniper"
className="text-blue-600 underline">
className="text-purple-600 underline">
Prices
</a>
,{' '}
<a
href="https://saddlebagexchange.com/undercut"
className="text-blue-600 underline">
className="text-purple-600 underline">
Undercuts, Sales
</a>
, and more!
Expand All @@ -97,7 +97,7 @@ export default function Index() {
Unlock the best deals and maximize profits with our{' '}
<a
href="https://saddlebagexchange.com/queries/recommended"
className="text-blue-600 underline">
className="text-purple-600 underline">
Cross-Server Reselling Tool.
</a>
</li>
Expand All @@ -106,31 +106,31 @@ export default function Index() {
with our{' '}
<a
href="https://saddlebagexchange.com/ffxiv/marketshare/queries"
className="text-blue-600 underline">
className="text-purple-600 underline">
Marketshare Overview Tool.
</a>
</li>
<li>
Explore lucrative crafting opportunities with our{' '}
<a
href="https://saddlebagexchange.com/ffxiv/craftsim/queries"
className="text-blue-600 underline">
className="text-purple-600 underline">
Crafting Profit Simulations.
</a>
</li>
<li>
Optimize your search for the cheapest raw materials with our{' '}
<a
href="https://saddlebagexchange.com/ffxiv/shopping-list"
className="text-blue-600 underline">
className="text-purple-600 underline">
Shopping List Search.
</a>
</li>
<li>
Uncover the true value of your items with our{' '}
<a
href="https://saddlebagexchange.com/queries/item-history"
className="text-blue-600 underline">
className="text-purple-600 underline">
Detailed Item Sale Statistics.
</a>
</li>
Expand All @@ -140,11 +140,11 @@ export default function Index() {
</li>
</ul>
</div>
<div>
<h3 className="text-2xl font-semibold text-blue-800 dark:text-gray-200 mb-4">
<div className="bg-blue-100 p-6 rounded-lg shadow-lg">
<h3 className="text-2xl font-semibold text-blue-800 mb-4">
For World of Warcraft Adventurers:
</h3>
<ul className="list-disc list-inside space-y-4 text-slate-700 dark:text-gray-300">
<ul className="list-disc list-inside space-y-4 text-blue-700">
<li>
Get real-time WoW AH Discord{' '}
<a
Expand Down
34 changes: 34 additions & 0 deletions app/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -1856,10 +1856,29 @@ select {
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-purple-100 {
--tw-bg-opacity: 1;
background-color: rgb(243 232 255 / var(--tw-bg-opacity));
}

.bg-opacity-75 {
--tw-bg-opacity: 0.75;
}

.bg-gradient-to-r {
background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-500 {
--tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
--tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-500 {
--tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}

.p-0 {
padding: 0px;
}
Expand Down Expand Up @@ -2234,6 +2253,21 @@ select {
color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-purple-600 {
--tw-text-opacity: 1;
color: rgb(147 51 234 / var(--tw-text-opacity));
}

.text-purple-700 {
--tw-text-opacity: 1;
color: rgb(126 34 206 / var(--tw-text-opacity));
}

.text-purple-800 {
--tw-text-opacity: 1;
color: rgb(107 33 168 / var(--tw-text-opacity));
}

.underline {
text-decoration-line: underline;
}
Expand Down

0 comments on commit 0646109

Please sign in to comment.