Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions apps/sim/app/(landing)/(pages)/enterprise/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
'use client'

import NavWrapper from '../../components/nav-wrapper'
import Clients from '../../components/sections/clients'
import CTA from '../../components/sections/cta'
import Hero from '../../components/sections/enterprise/hero'
import Security from '../../components/sections/enterprise/security'
import Showcase from '../../components/sections/enterprise/showcase'
import Footer from '../../components/sections/footer'

function Enterprise() {
return (
<main className='relative min-h-screen overflow-x-hidden scroll-smooth bg-white font-geist-sans'>
<NavWrapper onOpenTypeformLink={() => {}} />

<Hero />
<Clients />
<Security />
<Showcase />

<CTA />

{/* Footer */}
<Footer />
</main>
)
}

export default Enterprise
322 changes: 322 additions & 0 deletions apps/sim/app/(landing)/(pages)/pricing/page.tsx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/sim/app/(landing)/components/blog-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const BlogCard = ({
}: BlogCardProps) => {
return (
<Link href={href}>
<div className='flex flex-col rounded-3xl border border-[#606060]/40 bg-[#101010] p-8 transition-all duration-500 hover:bg-[var(--surface-elevated)]'>
<div className='flex flex-col rounded-3xl border border-[#606060]/40 bg-[#101010] p-8 transition-all duration-500 hover:bg-[#202020]'>
{image ? (
<Image
src={image}
Expand Down
6 changes: 3 additions & 3 deletions apps/sim/app/(landing)/components/github-stars-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ export default function GitHubStarsClient({ stars }: GitHubStarsClientProps) {
return (
<motion.a
href='https://github.com/simstudioai/sim'
className='flex items-center gap-2 rounded-md p-1.5 text-white/80 transition-colors duration-200 hover:text-white/100'
className='flex items-center gap-2 rounded-md p-1.5 text-muted-foreground transition-colors duration-200 hover:text-foreground'
aria-label='GitHub'
target='_blank'
rel='noopener noreferrer'
initial={{ opacity: 0, y: -10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3, ease: 'easeOut', delay: 0.3 }}
>
<GithubIcon className='h-[20px] w-[20px]' />
<span className='font-medium text-base'>{stars}</span>
<GithubIcon className='h-4 w-4' />
<span className='font-medium text-sm'>{stars}</span>
</motion.a>
)
}
245 changes: 0 additions & 245 deletions apps/sim/app/(landing)/components/hero-block.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions apps/sim/app/(landing)/components/hero-edge.tsx

This file was deleted.

Loading
Loading