File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"use client" ;
22
33import { Button } from "@/components/ui/button" ;
4- import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" ;
54import Link from "next/link" ;
65import { usePathname } from "next/navigation" ;
76
@@ -11,16 +10,22 @@ export function TocCTA() {
1110
1211 return isCommercial ? (
1312 < div className = "pt-4 pb-8" >
14- < div className = "text-sm mb-4 font-semibold" >
15- Explore your use case
16- </ div >
13+ < div className = "text-sm mb-4 font-semibold" > Explore your use case</ div >
1714 < Link href = "https://authzed.com/schedule-demo" className = "cursor-pointer" >
1815 < Button variant = "default" size = "sm" className = "w-full cursor-pointer" >
1916 Book a demo
2017 </ Button >
2118 </ Link >
2219 </ div >
2320 ) : (
24- < > </ >
21+ < div className = "pt-4 pb-8" >
22+ < div className = "text-sm mb-1 font-semibold" > AuthZed Cloud</ div >
23+ < div className = "text-sm mb-4 font-normal text-stone-400" > Hosted, self-service SpiceDB</ div >
24+ < Link href = "https://authzed.com/cloud/signup" className = "cursor-pointer" >
25+ < Button variant = "outline" size = "sm" className = "w-full cursor-pointer" >
26+ Get Started
27+ </ Button >
28+ </ Link >
29+ </ div >
2530 ) ;
2631}
Original file line number Diff line number Diff line change @@ -230,7 +230,9 @@ ${formData.comments || "No additional comments provided"}`;
230230 < textarea
231231 value = { formData . comments }
232232 onChange = { ( e ) => setFormData ( { ...formData , comments : e . target . value } ) }
233- placeholder = { isHelpful ? "Tell us more about your experience" : "Share your suggestions..." }
233+ placeholder = {
234+ isHelpful ? "Tell us more about your experience" : "Share your suggestions..."
235+ }
234236 className = "w-full px-3 py-2 bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-600 rounded text-sm text-gray-900 dark:text-gray-100 placeholder-gray-400 dark:placeholder-gray-500 resize-none focus:outline-none focus:border-gray-400 dark:focus:border-gray-500"
235237 rows = { 3 }
236238 />
You can’t perform that action at this time.
0 commit comments