Clean up exports now that we are leaning into the gibui thing

This commit is contained in:
2026-03-26 10:49:12 -05:00
parent 6e78140103
commit 0bc04dbf6b
8 changed files with 69 additions and 77 deletions

View File

@@ -2,7 +2,7 @@ export function CTA() {
return (
<section className='container mx-auto px-4 py-24'>
<div className='mx-auto max-w-4xl'>
<div className='border-border/40 from-muted/50 to-muted/30 rounded-2xl border bg-gradient-to-br p-8 text-center md:p-12'>
<div className='border-border/40 from-muted/50 to-muted/30 rounded-2xl border bg-linear-to-br p-8 text-center md:p-12'>
<h2 className='mb-4 text-3xl font-bold tracking-tight sm:text-4xl'>
Ready to Build Something Amazing?
</h2>

View File

@@ -1,4 +1,4 @@
import { Card, CardContent, CardHeader, CardTitle } from '@gib/ui/card';
import { Card, CardContent, CardHeader, CardTitle } from '@gib/ui';
const features = [
{

View File

@@ -2,7 +2,7 @@ import { Kanit } from 'next/font/google';
import Image from 'next/image';
import Link from 'next/link';
import { Button } from '@gib/ui/button';
import { Button } from '@gib/ui';
const kanitSans = Kanit({
subsets: ['latin'],

View File

@@ -1,17 +1,7 @@
'use client';
import type { Preloaded } from 'convex/react';
import { usePreloadedQuery } from 'convex/react';
import type { api } from '@gib/backend/convex/_generated/api.js';
import { CardDescription, CardHeader, CardTitle } from '@gib/ui';
interface ProfileCardProps {
preloadedUser: Preloaded<typeof api.auth.getUser>;
}
const ProfileHeader = ({ preloadedUser }: ProfileCardProps) => {
const user = usePreloadedQuery(preloadedUser);
const ProfileHeader = () => {
return (
<CardHeader>
<CardTitle className='text-xl'>Account Settings</CardTitle>