Skip to content

Commit fc4b200

Browse files
committed
Update Claude 3.7
1 parent ca031f0 commit fc4b200

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

components/HomePage/Pricing.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { useAccountContext } from "@/components/Context/Account";
1313
import SpinnerIcon from "@/components/SpinnerIcon";
1414
import CheckMark from "@/components/Symbol/CheckMark";
1515
import { ABSOLUTE_URLS, OPENAI_MODEL_O3_MINI, RELATIVE_URLS } from "@/config";
16-
import { ANTHROPIC_MODEL_CLAUDE_35, ANTHROPIC_MODEL_CLAUDE_37 } from "@/config/anthropic";
16+
import { ANTHROPIC_MODEL_CLAUDE_37 } from "@/config/anthropic";
1717
import { DEEPSEEK_MODEL_R1 } from "@/config/deepseek";
1818

1919
const pricingButtonStyles = `my-4 sm:my-2 md:my-8 rounded-lg transition-colors duration-200 text-md sm:text-lg xl:text-xl py-2 sm:py-1 md:py-3 w-full shadow-lg hover:shadow-lg font-semibold text-center mx-auto`;
@@ -161,7 +161,7 @@ export default function Pricing() {
161161
</Link>
162162
<ul className="flex flex-col text-base sm:text-sm md:text-xl space-y-1 list-none list-outside">
163163
<li>
164-
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_35}
164+
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_37}
165165
</li>
166166
<li>
167167
<CheckMark /> Up to 3 tickets per month
@@ -206,7 +206,7 @@ export default function Pricing() {
206206
<CheckMark /> Everything in Free plan
207207
</li>
208208
<li>
209-
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_35}
209+
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_37}
210210
</li>
211211
<li>
212212
<CheckMark /> per 10 tickets per month
@@ -258,8 +258,8 @@ export default function Pricing() {
258258
<CheckMark /> Everything in Standard plan
259259
</li>
260260
<li>
261-
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_35}, {ANTHROPIC_MODEL_CLAUDE_37},{" "}
262-
{OPENAI_MODEL_O3_MINI}, and {DEEPSEEK_MODEL_R1} etc.
261+
<CheckMark /> {ANTHROPIC_MODEL_CLAUDE_37}, {OPENAI_MODEL_O3_MINI}, and{" "}
262+
{DEEPSEEK_MODEL_R1} etc.
263263
</li>
264264
<li>
265265
<CheckMark /> Unlimited tickets

components/Navbar/MobileMenu.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
"use client";
2-
// Third Party
2+
3+
// Third Party Imports
34
import { motion } from "framer-motion";
45
import Link from "next/link";
56
import { useRouter } from "next/navigation";
67
import { signIn, signOut, useSession } from "next-auth/react";
78
import { useState } from "react";
89

9-
// Components
10+
// Local Imports
1011
import { useAccountContext } from "@/components/Context/Account";
1112
import { ABSOLUTE_URLS } from "@/config/index";
1213
import { INTERNAL_LINKS } from "@/config/internal-links";

0 commit comments

Comments
 (0)