chore: apply mix format to codebase
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -234,5 +234,4 @@ defmodule SimpleshopTheme.Theme.Fonts do
|
||||
""
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -67,7 +67,8 @@ defmodule SimpleshopTheme.Theme.PreviewData do
|
||||
%{
|
||||
rating: 5,
|
||||
title: "Absolutely beautiful",
|
||||
body: "The quality exceeded my expectations. The colours are vibrant and the paper feels premium. It's now pride of place in my living room.",
|
||||
body:
|
||||
"The quality exceeded my expectations. The colours are vibrant and the paper feels premium. It's now pride of place in my living room.",
|
||||
author: "Sarah M.",
|
||||
date: "2 weeks ago",
|
||||
verified: true
|
||||
@@ -75,7 +76,8 @@ defmodule SimpleshopTheme.Theme.PreviewData do
|
||||
%{
|
||||
rating: 4,
|
||||
title: "Great gift",
|
||||
body: "Bought this as a gift and it arrived beautifully packaged. Fast shipping too. Would definitely order again.",
|
||||
body:
|
||||
"Bought this as a gift and it arrived beautifully packaged. Fast shipping too. Would definitely order again.",
|
||||
author: "James T.",
|
||||
date: "1 month ago",
|
||||
verified: true
|
||||
@@ -90,13 +92,33 @@ defmodule SimpleshopTheme.Theme.PreviewData do
|
||||
"""
|
||||
def about_content do
|
||||
[
|
||||
%{type: :lead, text: "I'm Emma, a nature photographer based in the UK. What started as weekend walks with my camera has grown into something I never expected – a little shop where I can share my favourite captures with others."},
|
||||
%{type: :paragraph, text: "Every design in this shop comes from my own photography. Whether it's early morning mist over the hills, autumn leaves in the local woods, or the quiet beauty of wildflower meadows, I'm drawn to the peaceful moments that nature offers."},
|
||||
%{type: :paragraph, text: "I work with quality print partners to bring these images to life on products you can actually use and enjoy – from art prints for your walls to mugs for your morning tea."},
|
||||
%{
|
||||
type: :lead,
|
||||
text:
|
||||
"I'm Emma, a nature photographer based in the UK. What started as weekend walks with my camera has grown into something I never expected – a little shop where I can share my favourite captures with others."
|
||||
},
|
||||
%{
|
||||
type: :paragraph,
|
||||
text:
|
||||
"Every design in this shop comes from my own photography. Whether it's early morning mist over the hills, autumn leaves in the local woods, or the quiet beauty of wildflower meadows, I'm drawn to the peaceful moments that nature offers."
|
||||
},
|
||||
%{
|
||||
type: :paragraph,
|
||||
text:
|
||||
"I work with quality print partners to bring these images to life on products you can actually use and enjoy – from art prints for your walls to mugs for your morning tea."
|
||||
},
|
||||
%{type: :heading, text: "Quality you can trust"},
|
||||
%{type: :paragraph, text: "I've carefully chosen print partners who share my commitment to quality. Every product is made to order using premium materials and printing techniques that ensure vibrant colours and lasting quality."},
|
||||
%{
|
||||
type: :paragraph,
|
||||
text:
|
||||
"I've carefully chosen print partners who share my commitment to quality. Every product is made to order using premium materials and printing techniques that ensure vibrant colours and lasting quality."
|
||||
},
|
||||
%{type: :heading, text: "Printed sustainably"},
|
||||
%{type: :paragraph, text: "Because each item is printed on demand, there's no waste from unsold stock. My print partners use eco-friendly inks where possible, and products are shipped directly to you to minimise unnecessary handling."},
|
||||
%{
|
||||
type: :paragraph,
|
||||
text:
|
||||
"Because each item is printed on demand, there's no waste from unsold stock. My print partners use eco-friendly inks where possible, and products are shipped directly to you to minimise unnecessary handling."
|
||||
},
|
||||
%{type: :closing, text: "Thank you for visiting. It means a lot that you're here."}
|
||||
]
|
||||
end
|
||||
@@ -427,42 +449,48 @@ defmodule SimpleshopTheme.Theme.PreviewData do
|
||||
%{
|
||||
id: "1",
|
||||
author: "Sarah M.",
|
||||
content: "The print quality is absolutely stunning - colours are exactly as shown online. My living room looks so much better now!",
|
||||
content:
|
||||
"The print quality is absolutely stunning - colours are exactly as shown online. My living room looks so much better now!",
|
||||
rating: 5,
|
||||
date: "2025-01-15"
|
||||
},
|
||||
%{
|
||||
id: "2",
|
||||
author: "James L.",
|
||||
content: "Bought the forest hoodie as a gift. The packaging was lovely and the quality exceeded expectations. Will order again!",
|
||||
content:
|
||||
"Bought the forest hoodie as a gift. The packaging was lovely and the quality exceeded expectations. Will order again!",
|
||||
rating: 5,
|
||||
date: "2025-01-10"
|
||||
},
|
||||
%{
|
||||
id: "3",
|
||||
author: "Emily R.",
|
||||
content: "My new favourite mug! I love sipping my morning tea while looking at that beautiful fern design.",
|
||||
content:
|
||||
"My new favourite mug! I love sipping my morning tea while looking at that beautiful fern design.",
|
||||
rating: 5,
|
||||
date: "2025-01-05"
|
||||
},
|
||||
%{
|
||||
id: "4",
|
||||
author: "Michael T.",
|
||||
content: "The tote bag is so sturdy - I use it for everything now. Great print quality that hasn't faded at all.",
|
||||
content:
|
||||
"The tote bag is so sturdy - I use it for everything now. Great print quality that hasn't faded at all.",
|
||||
rating: 5,
|
||||
date: "2024-12-28"
|
||||
},
|
||||
%{
|
||||
id: "5",
|
||||
author: "Lisa K.",
|
||||
content: "The night sky blanket is gorgeous and so cosy. Perfect for film nights on the sofa. Highly recommend!",
|
||||
content:
|
||||
"The night sky blanket is gorgeous and so cosy. Perfect for film nights on the sofa. Highly recommend!",
|
||||
rating: 5,
|
||||
date: "2024-12-20"
|
||||
},
|
||||
%{
|
||||
id: "6",
|
||||
author: "David P.",
|
||||
content: "Ordered several prints for my new flat. They arrived well packaged and look amazing on the wall.",
|
||||
content:
|
||||
"Ordered several prints for my new flat. They arrived well packaged and look amazing on the wall.",
|
||||
rating: 5,
|
||||
date: "2024-12-15"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user