Update src/app/page.tsx
This commit is contained in:
@@ -49,8 +49,8 @@ export default function LandingPage() {
|
||||
imageSrc="https://img.b2bpic.net/free-photo/smartphone-minimal-display-marble_23-2149554980.jpg"
|
||||
imageAlt="iPhone showcase"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#features" }
|
||||
{ text: "Shop Now", href: "products" },
|
||||
{ text: "Learn More", href: "features" }
|
||||
]}
|
||||
avatarText="Loved by 50M+ users worldwide"
|
||||
avatars={[
|
||||
@@ -125,21 +125,21 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "iphone-15-standard", tag: "iPhone 15", tagIcon: Smartphone,
|
||||
price: "$799", period: "one-time", description: "Perfect for everyday power users who want the latest innovation", button: { text: "Buy Now", href: "#products" },
|
||||
price: "$799", period: "one-time", description: "Perfect for everyday power users who want the latest innovation", button: { text: "Buy Now", href: "products" },
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"6.1-inch Super Retina XDR display", "Advanced dual camera system", "A17 Pro chip", "All-day battery life", "Water resistance (IP68)", "5-year warranty"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "iphone-15-pro", tag: "iPhone 15 Pro", tagIcon: Crown,
|
||||
price: "$999", period: "one-time", description: "For professionals who demand uncompromising performance and pro-level features", button: { text: "Buy Now", href: "#products" },
|
||||
price: "$999", period: "one-time", description: "For professionals who demand uncompromising performance and pro-level features", button: { text: "Buy Now", href: "products" },
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"6.1-inch Pro display with 120Hz ProMotion", "Pro camera system with telephoto", "Titanium design", "A17 Pro chip optimized for pro apps", "Advanced computational photography", "6-year warranty + AppleCare+"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "iphone-15-pro-max", tag: "iPhone 15 Pro Max", tagIcon: Zap,
|
||||
price: "$1,199", period: "one-time", description: "The ultimate iPhone for creators and power users", button: { text: "Buy Now", href: "#products" },
|
||||
price: "$1,199", period: "one-time", description: "The ultimate iPhone for creators and power users", button: { text: "Buy Now", href: "products" },
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"6.7-inch Pro display XDR", "Pro camera system with advanced zoom", "Titanium premium build", "Extended battery life", "Pro-level video recording", "6-year warranty + AppleCare+ 24/7 support"
|
||||
]
|
||||
@@ -196,7 +196,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground="noInvert"
|
||||
buttons={[
|
||||
{ text: "Shop iPhone", href: "#products" },
|
||||
{ text: "Shop iPhone", href: "products" },
|
||||
{ text: "Contact Support", href: "https://support.apple.com" }
|
||||
]}
|
||||
/>
|
||||
@@ -211,10 +211,10 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Products", items: [
|
||||
{ label: "iPhone 15 Pro", href: "#products" },
|
||||
{ label: "iPhone 15", href: "#products" },
|
||||
{ label: "Compare Models", href: "#products" },
|
||||
{ label: "Accessories", href: "#products" }
|
||||
{ label: "iPhone 15 Pro", href: "products" },
|
||||
{ label: "iPhone 15", href: "products" },
|
||||
{ label: "Compare Models", href: "products" },
|
||||
{ label: "Accessories", href: "products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -230,7 +230,7 @@ export default function LandingPage() {
|
||||
{ label: "About Apple", href: "https://www.apple.com" },
|
||||
{ label: "Newsroom", href: "https://www.apple.com" },
|
||||
{ label: "Careers", href: "https://www.apple.com" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
{ label: "Contact", href: "contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user