@model SkyArtShop.Models.Page @{ ViewData["Title"] = Model?.Title ?? "About"; }

@(Model?.Title ?? "About Sky Art Shop")

@if (!string.IsNullOrEmpty(Model?.Subtitle)) {

@Model.Subtitle

}
@if (!string.IsNullOrEmpty(Model?.Content)) {
@Html.Raw(Model.Content)
} else {

Our Story

Sky Art Shop specializes in scrapbooking, journaling, cardmaking, and collaging stationery. We are passionate about helping people express their creativity and preserve their memories.

Our mission is to promote mental health and wellness through creative art activities. We believe that crafting is more than just a hobby—it's a therapeutic journey that brings joy, mindfulness, and self-expression.

What We Offer

Our carefully curated collection includes:

  • Washi tape in various designs and patterns
  • Unique stickers for journaling and scrapbooking
  • High-quality journals and notebooks
  • Card making supplies and kits
  • Scrapbooking materials and embellishments
  • Collage papers and ephemera
}
@if (Model?.ImageGallery != null && Model.ImageGallery.Any()) {
}
@if (Model?.TeamMembers != null && Model.TeamMembers.Any()) {

Meet Our Team

The creative minds behind Sky Art Shop

@foreach (var member in Model.TeamMembers) {

@member.Name

@if (!string.IsNullOrEmpty(member.Role)) {

@member.Role

} @if (!string.IsNullOrEmpty(member.Bio)) {

@member.Bio

}
@member.Name
}
}