Skip to content

Commit a9750a0

Browse files
Designing automation sheet
1 parent d183c94 commit a9750a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/app/(landingpage)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export default function LandingPage() {
207207
</div>
208208
<div ref={useScrollReveal()} className="opacity-0 translate-y-4 transition-all duration-700">
209209
<h2 className={`${bebasNeue.className} text-5xl sm:text-6xl font-normal mb-8 text-black tracking-tight leading-tight`}>
210-
Smart AI: A Smarter Way to Chat
210+
Auctorn AI: A Smarter Way to Chat
211211
</h2>
212212
<p className="text-lg text-muted-foreground mb-8">Level up the experiences your followers already love with the new Auctorn AI. Create more engaging and personalized conversations.</p>
213213
<Link href="/dashboard" className="bg-[#4F46E5] text-white px-8 py-4 rounded-full font-medium text-lg hover:bg-[#4338CA] transition-colors shadow-sm hover:shadow-md inline-block">

src/app/(protected)/dashboard/[slug]/automations/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type Props = {}
77

88
const Page = (props: Props) => {
99
return (
10-
<div className="flex flex-col gap-y-8 w-full">
10+
<div className="flex flex-col gap-y-8 w-full px-8">
1111
<div className="flex items-center justify-between w-full">
1212
<div className="flex flex-col gap-y-2">
1313
<Search slug="" />

src/app/(protected)/dashboard/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Props = {};
99

1010
const Page = (props: Props) => {
1111
return (
12-
<div className="flex flex-col gap-y-10">
12+
<div className="flex flex-col gap-y-10 px-8">
1313
<div className="flex justify-between items-center">
1414
<h1 className="text-3xl font-semibold text-black">Start Here</h1>
1515
<a href="#" className="text-blue-500 hover:underline">Explore all Templates</a>

src/components/global/activate-automation-button/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ActivateAutomationButton = ({ id }: Props) => {
3636
disabled={isPending}
3737
checked={optimisticState}
3838
onCheckedChange={handleStateChange}
39-
className="data-[state=checked]:hover:bg-green-600 data-[state=checked]:bg-green-500 data-[state=unchecked]:hover:bg-slate-500 data-[state=unchecked]:bg-slate-400 h-6 w-11 mx-4 [&>span]:data-[state=checked]:translate-x-6 [&>span]:bg-white transition-colors duration-200"
39+
className="data-[state=checked]:hover:bg-green-600 data-[state=checked]:bg-green-500 data-[state=unchecked]:bg-slate-400 h-6 w-11 mx-4 [&>span]:data-[state=checked]:translate-x-6 [&>span]:bg-white transition-colors duration-200"
4040
/>
4141
<span className="text-sm font-medium">
4242
{isPending ? (

0 commit comments

Comments
 (0)