7 Commits

Author SHA1 Message Date
5622e940ac Update src/app/page.tsx 2026-02-20 12:47:10 +00:00
9a0e5bb53a Update src/app/layout.tsx 2026-02-20 12:47:09 +00:00
5a8527d95b Update src/app/page.tsx 2026-02-20 12:23:26 +00:00
c38d8f1da1 Merge version_7 into main
Merge version_7 into main
2026-02-20 10:56:35 +00:00
c04d6a49ac Update src/app/page.tsx 2026-02-20 10:56:30 +00:00
0aeb9bafc5 Merge version_7 into main
Merge version_7 into main
2026-02-20 10:54:46 +00:00
6c9d0492eb Update src/app/page.tsx 2026-02-20 10:54:41 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -148,7 +148,7 @@ export default function RootLayout({
const backgroundImage = computedStyle.backgroundImage;
if (backgroundImage && backgroundImage !== 'none') {
const urlMatch = backgroundImage.match(/url(['"]?([^'")]+)['"]?)/);
const urlMatch = backgroundImage.match(/url(['\"]?([^'\")]+)['\"]?)/);
if (urlMatch && urlMatch[1] && !urlMatch[1].includes('gradient')) {
const area = element.offsetWidth * element.offsetHeight;
const hasReasonableSize = area > 1000;
@@ -317,7 +317,7 @@ export default function RootLayout({
const computedStyle = window.getComputedStyle(element);
const backgroundImage = computedStyle.backgroundImage;
if (backgroundImage && backgroundImage !== 'none') {
const urlMatch = backgroundImage.match(/url(['"]?([^'")]+)['"]?)/);
const urlMatch = backgroundImage.match(/url(['\"]?([^'\")]+)['\"]?)/);
if (urlMatch) {
const originalBgSrc = extractOriginalUrl(urlMatch[1]);
if (tagName !== 'img') {
@@ -1270,7 +1270,7 @@ export default function RootLayout({
let cleanOldValue = oldValue;
if (oldValue.includes('url(')) {
const urlMatch = oldValue.match(/url(['"]?([^'")]+)['"]?)/);
const urlMatch = oldValue.match(/url(['\"]?([^'\")]+)['\"]?)/);
if (urlMatch) {
cleanOldValue = urlMatch[1];
}
@@ -2758,4 +2758,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -66,7 +66,7 @@ export default function LandingPage() {
features={[
{
id: "ai-insights", label: "AI Insights", title: "Machine Learning-Powered Analysis", items: [
"Pattern recognition across 10,000+ startups", "Predictive market trend analysis", "Automated due diligence reports", "Sentiment analysis from industry sources"
"60% faster due diligence with automated reports", "92% accuracy in predictive market trend analysis", "Identify top 1% of opportunities from 10,000+ startups", "Aggregate sentiment from 5M+ industry sources daily"
],
buttons: [
{ text: "Learn More", href: "#" }
@@ -74,7 +74,7 @@ export default function LandingPage() {
},
{
id: "realtime-data", label: "Real-Time", title: "Live Market Intelligence", items: [
"Sub-second data updates", "Multi-asset class tracking", "Portfolio performance monitoring", "Custom alert systems"
"Under 250ms data updates for real-time advantage", "Track 50+ asset classes in a single dashboard", "Reduce missed opportunities by 40% with custom alerts", "24/7 real-time portfolio performance monitoring"
],
buttons: [
{ text: "Explore Platform", href: "pricing" }
@@ -82,7 +82,7 @@ export default function LandingPage() {
},
{
id: "security", label: "Security", title: "Military-Grade Protection", items: [
"Enterprise encryption standards", "Multi-factor authentication", "Compliance with FINRA and SEC", "Annual third-party audits"
"Secure with AES-256 enterprise encryption standards", "99.9% account protection with multi-factor authentication", "100% compliant with FINRA and SEC regulations", "Pass annual third-party security audits with zero breaches"
]
}
]}
@@ -266,4 +266,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}