/** * 关于页面 - 价值前沿 */ import React from "react"; import { ScrollView, StyleSheet, Image, Dimensions } from "react-native"; import { Box, VStack, HStack, Text, Center, Icon } from "native-base"; import { LinearGradient } from "expo-linear-gradient"; import { Ionicons } from "@expo/vector-icons"; const { width } = Dimensions.get("window"); // 金色主题 const GOLD_PRIMARY = '#D4AF37'; const GOLD_GRADIENT = ['#D4AF37', '#F5D77A', '#D4AF37']; const FeatureItem = ({ icon, title, description }) => ( {title} {description} ); export default function About() { return ( {/* Logo 区域 */}
价值前沿 VALUE FRONTIER Version 1.0.0
{/* 介绍文字 */} 价值前沿是一款专注于A股市场的智能投资决策平台, 通过实时追踪市场事件、分析板块热点, 帮助投资者发现市场机会,做出更明智的投资决策。 {/* 核心功能 */} 核心功能 {/* 联系信息 */} 联系我们 www.valuefrontier.cn support@valuefrontier.cn {/* 版权信息 */}
Copyright 2024 Value Frontier All rights reserved.
); } const styles = StyleSheet.create({ container: { padding: 20, }, });