Add ZELLYY CLOUD text

Add a line of text "ZELLYY CLOUD" at the bottom of the screen, 70px below "The first build".
This commit is contained in:
gpt-engineer-app[bot]
2025-03-21 12:45:05 +00:00
parent 335848cca8
commit 41d8fdcc7c

View File

@@ -1,3 +1,4 @@
import React, { useCallback, useEffect, useState, useRef } from 'react';
import { getAppVersionInfo, isAndroidPlatform } from '@/utils/platform';
import { Label } from '@/components/ui/label';
@@ -118,6 +119,10 @@ const AppVersionInfo: React.FC<AppVersionInfoProps> = ({
<Label htmlFor="notes" className="text-gray-600"> </Label>
<div className="p-2 text-base mt-1 py-0">The first build</div>
</div>
<div className="mt-[70px] text-center">
<p className="text-sm text-gray-400 font-semibold">ZELLYY CLOUD</p>
</div>
</div>
</div>;
}