Compare commits
10 Commits
version_6
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 5622e940ac | |||
| 9a0e5bb53a | |||
| 5a8527d95b | |||
| c38d8f1da1 | |||
| c04d6a49ac | |||
| 0aeb9bafc5 | |||
| 6c9d0492eb | |||
| fd9ad7cf34 | |||
| 57ef7569b2 | |||
| 10011aee43 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user