Skip to content

Commit 4f8f651

Browse files
authored
Merge pull request #6 from legend4tech/build-pages
fix: resolved build error
2 parents 97595a8 + b3cdaac commit 4f8f651

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

packages/nextjs/app/about/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ import { Shield, Zap, TrendingUp, Users, Lock, BarChart3, Building2, Sparkles }
22
import { Button } from "~~/components/ui/button"
33
import { Card } from "~~/components/ui/card"
44
import Link from "next/link"
5+
import type { Metadata } from "next"
56

6-
export const metadata = {
7+
8+
9+
export const metadata: Metadata = {
710
title: "About reAI - AI-Powered Real Estate Tokenization",
811
description:
912
"Learn how reAI combines blockchain technology and artificial intelligence to revolutionize real estate investment through secure asset tokenization.",

packages/nextjs/components/landing/welcome-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function WelcomeModal({ open, onOpenChange }: WelcomeModalProps) {
4141
className="w-full p-4 sm:p-5 border-2 border-gray-200 rounded-lg hover:border-emerald-500 hover:bg-emerald-50 transition-all group"
4242
>
4343
<div className="flex items-center space-x-4">
44-
<div className="w-12 h-12 sm:w-14 sm:h-14 rounded-full bg-emerald-500 flex items-center justify-center group-hover:bg-emerald-600 transition-colors flex-shrink-0">
44+
<div className="w-12 h-12 sm:w-14 sm:h-14 rounded-full bg-emerald-500 flex items-center justify-center group-hover:bg-emerald-600 transition-colors shrink-0">
4545
<ArrowRight className="w-6 h-6 sm:w-7 sm:h-7 text-white" />
4646
</div>
4747
<div className="text-left">
@@ -57,7 +57,7 @@ export function WelcomeModal({ open, onOpenChange }: WelcomeModalProps) {
5757
className="w-full p-4 sm:p-5 border-2 border-gray-200 rounded-lg hover:border-blue-500 hover:bg-blue-50 transition-all group"
5858
>
5959
<div className="flex items-center space-x-4">
60-
<div className="w-12 h-12 sm:w-14 sm:h-14 rounded-full bg-blue-500 flex items-center justify-center group-hover:bg-blue-600 transition-colors flex-shrink-0">
60+
<div className="w-12 h-12 sm:w-14 sm:h-14 rounded-full bg-blue-500 flex items-center justify-center group-hover:bg-blue-600 transition-colors shrink-0">
6161
<UserPlus className="w-6 h-6 sm:w-7 sm:h-7 text-white" />
6262
</div>
6363
<div className="text-left">

0 commit comments

Comments
 (0)