Skip to content

Commit

Permalink
Run reviewed SQL code
Browse files Browse the repository at this point in the history
[skip gpt_engineer]
  • Loading branch information
lovable-dev[bot] committed Dec 19, 2024
1 parent f3cd6e2 commit 827054e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
18 changes: 18 additions & 0 deletions src/integrations/supabase/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,24 @@ export type Database = {
}
Relationships: []
}
profiles: {
Row: {
created_at: string
first_name: string
id: string
}
Insert: {
created_at?: string
first_name: string
id: string
}
Update: {
created_at?: string
first_name?: string
id?: string
}
Relationships: []
}
session_metrics: {
Row: {
conversation_id: string | null
Expand Down
8 changes: 5 additions & 3 deletions src/pages/Pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ const PricingPage = () => {
<h1 className="text-4xl font-bold tracking-tight mb-4">
Découvrez la puissance de l'intelligence artificielle dans votre métier grâce à Pédagoia
</h1>
<Badge variant="secondary" className="mb-4 bg-secondary text-primary">
<Badge variant="secondary" className="mb-4 bg-secondary text-primary">
<MessageSquareText className="w-4 h-4 mr-1" />
Essai gratuit de 7 jours
</Badge>
</div>

<div className="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
{/* Plan Mensuel */}
<Card className="p-8 relative hover:shadow-xl transition-shadow duration-300 bg-white/80 backdrop-blur-sm shadow-lg">
Expand Down Expand Up @@ -68,7 +70,7 @@ const PricingPage = () => {

<Button
onClick={handleStartTrial}
className="w-full mt-8 bg-secondary hover:bg-secondary/90 text-secondary-foreground transition-colors"
className="w-full mt-8 bg-primary hover:bg-primary/90 text-primary-foreground transition-colors"
>
Commencer l'essai gratuit
</Button>
Expand Down Expand Up @@ -183,4 +185,4 @@ const PricingPage = () => {
)
}

export default PricingPage
export default PricingPage

0 comments on commit 827054e

Please sign in to comment.