Update card title to "twoplustwo"

Changed the title of the main card in the Index component from "Disinformation Quest" to "twoplustwo".
[skip gpt_engineer]
Этот коммит содержится в:
gpt-engineer-app[bot] 2024-12-06 00:23:50 +00:00
родитель f62f91b8c3
Коммит e13b90e9bc

Просмотреть файл

@ -52,7 +52,7 @@ const Index = () => {
const handleStartGame = () => { const handleStartGame = () => {
setGameStarted(true); setGameStarted(true);
toast({ toast({
title: "Welcome to the Disinformation Campaign Simulator", title: "Welcome to TwoPlusTwo",
description: "Learn how misinformation spreads by making strategic choices.", description: "Learn how misinformation spreads by making strategic choices.",
}); });
}; };
@ -71,7 +71,7 @@ const Index = () => {
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 flex items-center justify-center p-4"> <div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 flex items-center justify-center p-4">
<Card className="w-full max-w-2xl bg-black/50 text-white border-gray-700"> <Card className="w-full max-w-2xl bg-black/50 text-white border-gray-700">
<CardHeader className="text-center"> <CardHeader className="text-center">
<CardTitle className="text-3xl mb-2">Disinformation Quest</CardTitle> <CardTitle className="text-3xl mb-2">TwoPlusTwo</CardTitle>
<CardDescription className="text-gray-300"> <CardDescription className="text-gray-300">
An educational game about the mechanics of disinformation campaigns An educational game about the mechanics of disinformation campaigns
</CardDescription> </CardDescription>
@ -85,7 +85,7 @@ const Index = () => {
<div className="flex justify-center"> <div className="flex justify-center">
<Button <Button
onClick={handleStartGame} onClick={handleStartGame}
className="bg-purple-600 hover:bg-purple-700 text-white px-8 py-4 text-lg" className="bg-yellow-500 hover:bg-yellow-600 text-black px-8 py-4 text-lg"
> >
Begin Simulation Begin Simulation
</Button> </Button>