Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#F7FAFC' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#4A5568' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#4A5568' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#FFFFFF' }}>
<div className="feature-icon" style={{ backgroundColor: '#F6E05E' }}>
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#4A5568' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#4A5568' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#000000' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#F7FAFC' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#F7FAFC' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#4A5568' }}>
<div className="feature-icon" style={{ backgroundColor: '#F6E05E' }}>
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#F7FAFC' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#F7FAFC' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#F7FAFC' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#4A5568' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#4A5568' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#FFFFFF', border: '1px solid #667EEA' }}>
<div className="feature-icon">
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#4A5568' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#4A5568' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#4A5568' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#F7FAFC' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#F7FAFC' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#F7FAFC' }}>
<div className="feature-icon">
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#000000' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#000000' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#667EEA' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#F7FAFC' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#F7FAFC' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#F7FAFC' }}>
<div className="feature-icon">
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#4A5568' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#4A5568' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import '../../src/components/Features.css';

interface Feature {
icon: string;
title: string;
description: string;
}

const features: Feature[] = [
{ icon: '⚡', title: 'Lightning Fast', description: 'Built for speed with optimized performance and minimal loading times.' },
{ icon: '🔒', title: 'Secure', description: 'Enterprise-grade security with end-to-end encryption and compliance.' },
{ icon: '📱', title: 'Responsive', description: 'Perfect experience across all devices and screen sizes.' },
{ icon: '🎨', title: 'Customizable', description: 'Fully customizable themes and components to match your brand.' },
{ icon: '🚀', title: 'Scalable', description: 'Grows with your business from startup to enterprise scale.' },
{ icon: '💬', title: 'Support', description: '24/7 customer support with dedicated success managers.' }
];

const Features: React.FC = () => {
return (
<section className="features" id="features" style={{ backgroundColor: '#F7FAFC' }}>
<div className="container">
<div className="section-header">
<h2 className="section-title" style={{ color: '#667EEA' }}>Why Choose Us?</h2>
<p className="section-description" style={{ color: '#4A5568' }}>
Discover the features that make our platform the best choice for your needs.
</p>
</div>

<div className="features-grid">
{features.map((feature, index) => (
<div key={index} className="feature-card" style={{ backgroundColor: '#FFFFFF' }}>
<div className="feature-icon">
{feature.icon}
</div>
<h3 className="feature-title" style={{ color: '#667EEA' }}>{feature.title}</h3>
<p className="feature-description" style={{ color: '#4A5568' }}>{feature.description}</p>
</div>
))}
</div>
</div>
</section>
);
};

export default Features;
4 changes: 4 additions & 0 deletions probat/config.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// probat/config.tsx
export const PROBAT_COMPONENTS: Record<string, { proposalId: string }> = {
"src/components/Features.tsx": { proposalId: "b67c9b37-e15f-4562-99a2-8fa70af080a1" }
};
4 changes: 4 additions & 0 deletions probat/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// probat/index.tsx
export { withExperiment } from "./runtime";
export { PROBAT_REGISTRIES } from "./registry";
export { PROBAT_COMPONENTS } from "./config";
18 changes: 18 additions & 0 deletions probat/registry.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// probat/registry.tsx
import type React from "react";
import Exp_0_c from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/d7fb1a9b-0a03-41e5-aa77-657a308ef113";
import Exp_1_d from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/35864a5f-62ca-48bf-bfe9-f9200590ffd7";
import Exp_2_e from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/3c390170-1a94-40d8-9d66-fc01f9ffff82";
import Exp_3_f from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/735f4aa6-0f9b-4f54-a116-2aec55f39e6a";
import Exp_4_g from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/bc8fd9d7-0daf-4830-8af7-b5e1e4d31847";
import Exp_5_i from "./b67c9b37-e15f-4562-99a2-8fa70af080a1/fc41a57e-2bae-4c44-8074-899f97f58c76";
export const PROBAT_REGISTRIES: Record<string, Record<string, React.ComponentType<any>>> = {
"src/components/Features.tsx": {
"c": Exp_0_c,
"d": Exp_1_d,
"e": Exp_2_e,
"f": Exp_3_f,
"g": Exp_4_g,
"i": Exp_5_i,
},
};
Loading