Skip to content

Commit

Permalink
feat: add premium (#86)
Browse files Browse the repository at this point in the history
* don't bake in the sensitive values on build time

* feat: minor adjustments

* feat: fix synax errors

* feat: switch button colours

* feat: 2024 rights reserved

* feat: change colours
  • Loading branch information
HenrySpartGlobal authored Apr 17, 2024
1 parent ab07d18 commit f56cef7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/partials/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Footer(props: { withBorder?: boolean }) {
[email protected]
</p>
<p className="mt-2 text-sm">
© 2023 All rights reserved.
© 2024 All rights reserved.
</p>
</div>
{/* col 2 - links*/}
Expand Down
21 changes: 14 additions & 7 deletions src/partials/Home/CallToAction.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import Button from "../../components/Button";
import CWLLogo from "../../assets/cwl.png";
import Image from "next/image";

export default function CallToAction() {
return (
Expand All @@ -20,10 +18,11 @@ export default function CallToAction() {
</span>
</h1>

<div className="flex flex-row gap-2">
<h3 className="my-auto text-xl text-gray-400">Proud sponsor of:</h3>
<Image src={CWLLogo} alt="CWL Logo" height={64} />
</div>
{/* sponsor */}
{/* <div className="flex flex-row gap-2">
<h3 className="my-auto text-lg text-gray-400">Proud sponsor of:</h3>
<Image src={CWLLogo} alt="CWL Logo" height={64} />
</div> */}
</div>

{/* right buttons */}
Expand All @@ -33,13 +32,21 @@ export default function CallToAction() {
>
{/* invite button */}
<Button
variant="primary"
variant="secondary"
href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=1101927804016&scope=bot"
target="_blank"
>
Add to Discord
</Button>

<Button
variant="primary"
href="https://inhousequeue.xyz/premium"
target="_blank"
>
Premium
</Button>

{/* commands */}
<Button variant="secondary" href="/commands" target="_blank">
Commands
Expand Down
6 changes: 2 additions & 4 deletions src/partials/Home/Feature2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Feature2() {
return (
<Feature
title="Unlock Your Players True Potential"
description="In-House Queue bot features a built-in matchmaking system, ensuring fair and balanced matchups. In addition, our bot offers leaderboards, MVP voting, and other features to add depth and excitement to your gaming experience. That's not all, Take to the battle field with your Duo partner and track your stats!"
description=""
direction="rtl"
image={FeatureImage2}
>
Expand All @@ -16,14 +16,12 @@ export default function Feature2() {
"Unique In-Game role assignment",
"Unlock built in Achievements",
"Spectators Buttons",
"Customizable Ready Up Check",
"Vote for your MVP of the Match!",
"Track your stats and match history",
"Dedicated server site leaderboard",
"Duo Queue",
"Captain Queue",
"Customize Team sizes (1v1 - 8v8)",
"More",
"So much more...",
].map((item, index) => (
<li
key={index}
Expand Down
15 changes: 3 additions & 12 deletions src/partials/Home/Feature3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,10 @@ export default function Feature3() {
>
{/* checkmarks */}
<ol className="checkmark-list space-y-3 text-left">
<li data-aos="fade-up" data-aos-delay={0}>
<span className="font-bold">Server Performance Tracking:</span>{" "}
Can a quick overview on how your server is performing.
Total games, Total players and other admin related information are all available
with a single command.
</li>

<li data-aos="fade-up" data-aos-delay={100}>
<span className="font-bold">Casual Server Customization:</span> Tailor
<span className="font-bold">Server Customization:</span> Tailor
the bot to your server&apos;s needs, whether you&apos;re a casual
player or a competitive gamer. Choose captains, join queues without
specifying roles, and let the bot handle the rest!
player or a competitive gamer.
</li>

<li data-aos="fade-up" data-aos-delay={200}>
Expand All @@ -38,8 +30,7 @@ export default function Feature3() {
</li>

<li data-aos="fade-up" data-aos-delay={400}>
<span className="font-bold">Team Size customization</span> Customize the bot to your specific
Games. From 1v1 to 8v8!
<span className="font-bold">Team Size customization</span> No matter the game, we have you covered. From 1v1s to 8v8s!
</li>

<li data-aos-delay={500} data-aos="fade-up">
Expand Down
4 changes: 2 additions & 2 deletions src/partials/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const links = [
href: "https://discord.gg/NDKMeT6GE7"
},
{
name: "GitHub",
href: "https://github.com/HenrySpartGlobal/InHouseQueue"
name: "Premium",
href: "https://inhousequeue.xyz/premium"
},
{
name: "Documentation",
Expand Down

0 comments on commit f56cef7

Please sign in to comment.