Skip to content
Merged
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
30 changes: 0 additions & 30 deletions src/app/(app)/dashboard/setup/components/ens-name-card.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/app/(app)/dashboard/setup/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export { CostBreakdownCard } from './cost-breakdown-card'
export { EnsNameCard } from './ens-name-card'
export { FoundersForm } from './founders-form'
export { PaymentStep } from './payment-step'
export { RegistrationProgressCard } from './registration-progress-card'
Expand Down
4 changes: 1 addition & 3 deletions src/app/(app)/dashboard/setup/components/setup-wizard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { STARTUPCHAIN_CHAIN_ID } from '@/lib/blockchain/startupchain-config'
import { useDraftStore } from '@/lib/store/draft'

import { CostBreakdownCard } from './cost-breakdown-card'
import { EnsNameCard } from './ens-name-card'
import { FoundersForm } from './founders-form'
import { RegistrationProgressCard } from './registration-progress-card'

Expand Down Expand Up @@ -288,7 +287,7 @@ export function SetupWizard({ initialEnsName }: SetupWizardProps) {

return (
<div className="space-y-10">
<section className="border-primary/30 bg-card relative overflow-hidden rounded-3xl border p-7 shadow-sm md:p-8">
<section className="bg-card border-border relative overflow-hidden rounded-2xl border p-6 shadow-sm md:p-8">
<div className="from-primary/12 via-primary/6 pointer-events-none absolute inset-x-0 top-0 h-28 bg-gradient-to-r to-transparent" />
<div className="relative">
<p className="text-primary text-xs font-semibold tracking-[0.2em] uppercase">
Expand Down Expand Up @@ -324,7 +323,6 @@ export function SetupWizard({ initialEnsName }: SetupWizardProps) {
) : (
<div className="grid gap-6 lg:grid-cols-3 lg:items-start">
<div className="space-y-6 lg:col-span-2">
<EnsNameCard ensName={initialEnsName} />
<FoundersForm
shareholders={draft.shareholders}
isMultipleFounders={draft.isMultipleFounders}
Expand Down
Loading