diff --git a/CatherineLynwood/CatherineLynwood.csproj b/CatherineLynwood/CatherineLynwood.csproj index 33b08e6..2c7de42 100644 --- a/CatherineLynwood/CatherineLynwood.csproj +++ b/CatherineLynwood/CatherineLynwood.csproj @@ -40,6 +40,18 @@ + + + + + + + + + + + + Never @@ -141,7 +153,6 @@ - diff --git a/CatherineLynwood/Controllers/TheAlphaFlameController.cs b/CatherineLynwood/Controllers/TheAlphaFlameController.cs index 0b8d5f1..e3d8e88 100644 --- a/CatherineLynwood/Controllers/TheAlphaFlameController.cs +++ b/CatherineLynwood/Controllers/TheAlphaFlameController.cs @@ -67,7 +67,7 @@ namespace CatherineLynwood.Controllers } // Paginate the results based on ResultsPerPage - int resultsPerPage = blogFilter.ResultsPerPage > 0 ? blogFilter.ResultsPerPage : 10; // Default to 10 if not specified + int resultsPerPage = blogFilter.ResultsPerPage > 0 ? blogFilter.ResultsPerPage : 6; // Default to 6 if not specified // Calculate the items for the current page blogIndex.Blogs = blogIndex.Blogs diff --git a/CatherineLynwood/Models/Blog.cs b/CatherineLynwood/Models/Blog.cs index 1748d75..5cabc46 100644 --- a/CatherineLynwood/Models/Blog.cs +++ b/CatherineLynwood/Models/Blog.cs @@ -22,6 +22,16 @@ public string ContentTop { get; set; } + public string DefaultWebpImage + { + get + { + string fileName = Path.GetFileNameWithoutExtension(ImageUrl); + + return $"{fileName}-600.webp"; + } + } + public string ImageAlt { get; set; } public string ImageDescription { get; set; } @@ -34,6 +44,10 @@ public int Likes { get; set; } + public string PostedBy { get; set; } + + public string PostedImage { get; set; } + public DateTime PublishDate { get; set; } public bool ShowThanks { get; set; } @@ -44,18 +58,7 @@ public string Title { get; set; } - public string DefaultWebpImage - { - get - { - string fileName = Path.GetFileNameWithoutExtension(ImageUrl); - - - return $"{fileName}-600.webp"; - - } - } - + public string VideoUrl { get; set; } #endregion Public Properties } diff --git a/CatherineLynwood/Models/BlogFilter.cs b/CatherineLynwood/Models/BlogFilter.cs index 2d88b5d..5c4908a 100644 --- a/CatherineLynwood/Models/BlogFilter.cs +++ b/CatherineLynwood/Models/BlogFilter.cs @@ -4,7 +4,7 @@ { public int SortDirection { get; set; } = 1; - public int ResultsPerPage { get; set; } = 10; + public int ResultsPerPage { get; set; } = 6; public int PageNumber { get; set; } = 1; diff --git a/CatherineLynwood/Services/DataAccess.cs b/CatherineLynwood/Services/DataAccess.cs index 3a65e01..f8886d2 100644 --- a/CatherineLynwood/Services/DataAccess.cs +++ b/CatherineLynwood/Services/DataAccess.cs @@ -198,6 +198,9 @@ namespace CatherineLynwood.Services blog.SubTitle = GetDataString(rdr, "SubTitle"); blog.Template = GetDataString(rdr, "Template"); blog.Title = GetDataString(rdr, "Title"); + blog.VideoUrl = GetDataString(rdr, "VideoUrl"); + blog.PostedBy = GetDataString(rdr, "PostedBy"); + blog.PostedImage = GetDataString(rdr, "PostedImage"); } await rdr.NextResultAsync(); diff --git a/CatherineLynwood/TagHelpers/SocialMediaShareTagHelper.cs b/CatherineLynwood/TagHelpers/SocialMediaShareTagHelper.cs index 99177c3..0aeb24a 100644 --- a/CatherineLynwood/TagHelpers/SocialMediaShareTagHelper.cs +++ b/CatherineLynwood/TagHelpers/SocialMediaShareTagHelper.cs @@ -20,7 +20,7 @@ namespace CatherineLynwood.TagHelpers var pinterestUrl = $"https://pinterest.com/pin/create/button/?url={encodedUrl}&description={encodedTitle}"; var shareHtml = $@" - - - - - @section Scripts { + + @if (!string.IsNullOrEmpty(Model.VideoUrl)) + { + + } } @section Meta { - - - + + @functions { public static string StripHtml(string input) @@ -140,65 +213,85 @@ @{ string blogUrl = $"https://www.catherinelynwood.com/{Model.BlogUrl}"; - string imageUrl = $"https://www.catherinelynwood.com/images/webp/{Model.DefaultWebpImage}"; - string description = $"Listen to my new blog entry: {Model.Title} by Catherine Lynwood"; + string imageJson = string.Empty; + string videoJson = string.Empty; + string description; + if (!string.IsNullOrWhiteSpace(Model.AudioTeaserUrl)) + { + description = $"Listen to my new blog entry: {Model.Title} by Catherine Lynwood"; + } + else + { + description = $"Read my latest blog post: {Model.Title} by Catherine Lynwood"; + } + var contentTopPlainText = StripHtml(Model.ContentTop); var contentBottomPlainText = StripHtml(Model.ContentBottom); + // Image JSON-LD block if ImageUrl is available + if (!string.IsNullOrWhiteSpace(Model.ImageUrl)) + { + string imageUrl = $"https://www.catherinelynwood.com/images/webp/{Model.DefaultWebpImage}"; + imageJson = $@", + ""image"": {{ + ""@type"": ""ImageObject"", + ""url"": ""{imageUrl}"", + ""description"": ""{Model.ImageDescription}"" + }}"; + } + + // Video JSON-LD block if VideoUrl is available + if (!string.IsNullOrWhiteSpace(Model.VideoUrl)) + { + // You can add extra properties here if your Blog class supports them in future + videoJson = $@", + ""video"": {{ + ""@type"": ""VideoObject"", + ""name"": ""{Model.Title} – Video Teaser"", + ""description"": ""Atmospheric teaser video for {Model.Title}."", + ""thumbnailUrl"": ""https://www.catherinelynwood.com/images/webp/{Model.DefaultWebpImage}"", + ""uploadDate"": ""{Model.PublishDate:yyyy-MM-dd}"", + ""contentUrl"": ""{Model.VideoUrl}"", + ""embedUrl"": ""{Model.VideoUrl}"" + }}"; + } + + // Assemble the final JSON-LD with conditional blocks var blogPostJsonLd = $@" - {{ - ""@context"": ""https://schema.org"", - ""@type"": ""BlogPosting"", - ""headline"": ""{Model.Title}"", - ""datePublished"": ""{Model.PublishDate:yyyy-MM-dd}"", - ""author"": {{ - ""@type"": ""Person"", - ""name"": ""Catherine Lynwood"" - }}, - ""description"": ""{Model.IndexText}"", - ""articleBody"": ""{contentTopPlainText} {contentBottomPlainText}"", - ""url"": ""https://www.catherinelynwood.com/the-alpah-flame/blog/{Model.BlogUrl}"", - ""image"": {{ - ""@type"": ""ImageObject"", - ""url"": ""https://www.catherinelynwood.com/images/webp/{Model.DefaultWebpImage}"", - ""description"": ""{Model.ImageDescription}"" - }}, - ""interactionStatistic"": {{ - ""@type"": ""InteractionCounter"", - ""interactionType"": {{ - ""@type"": ""http://schema.org/LikeAction"" - }}, - ""userInteractionCount"": {Model.Likes} - }} - }}"; + {{ + ""@context"": ""https://schema.org"", + ""@type"": ""BlogPosting"", + ""headline"": ""{Model.Title}"", + ""datePublished"": ""{Model.PublishDate:yyyy-MM-dd}"", + ""author"": {{ + ""@type"": ""Person"", + ""name"": ""Catherine Lynwood"" + }}, + ""description"": ""{Model.IndexText}"", + ""articleBody"": ""{contentTopPlainText} {contentBottomPlainText}"", + ""url"": ""{blogUrl}""{imageJson}{videoJson}, + ""interactionStatistic"": {{ + ""@type"": ""InteractionCounter"", + ""interactionType"": {{ + ""@type"": ""http://schema.org/LikeAction"" + }}, + ""userInteractionCount"": {Model.Likes} + }} + }}"; } - - - - - - - - - - - - - - - - - - - - - + } diff --git a/CatherineLynwood/bundleconfig.json b/CatherineLynwood/bundleconfig.json index fa36a61..ff69244 100644 --- a/CatherineLynwood/bundleconfig.json +++ b/CatherineLynwood/bundleconfig.json @@ -58,5 +58,23 @@ "inputFiles": [ "wwwroot/css/plyr.css" ] + }, + { + "outputFileName": "wwwroot/css/duotone.min.css", + "inputFiles": [ + "wwwroot/css/duotone.css" + ] + }, + { + "outputFileName": "wwwroot/css/brands.min.css", + "inputFiles": [ + "wwwroot/css/brands.css" + ] + }, + { + "outputFileName": "wwwroot/css/fontawesome.min.css", + "inputFiles": [ + "wwwroot/css/fontawesome.css" + ] } ] diff --git a/CatherineLynwood/wwwroot/audio/Chapter13.mp3 b/CatherineLynwood/wwwroot/audio/Chapter13.mp3 new file mode 100644 index 0000000..37ba8ea Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/Chapter13.mp3 differ diff --git a/CatherineLynwood/wwwroot/audio/Teaser.mp3 b/CatherineLynwood/wwwroot/audio/Teaser.mp3 new file mode 100644 index 0000000..add3eba Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/Teaser.mp3 differ diff --git a/CatherineLynwood/wwwroot/audio/why-do-i-bother-indie-author-life.mp3 b/CatherineLynwood/wwwroot/audio/why-do-i-bother-indie-author-life.mp3 new file mode 100644 index 0000000..f511d8b Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/why-do-i-bother-indie-author-life.mp3 differ diff --git a/CatherineLynwood/wwwroot/audio/why-verity-fans-will-love-the-alpha-flame.mp3 b/CatherineLynwood/wwwroot/audio/why-verity-fans-will-love-the-alpha-flame.mp3 new file mode 100644 index 0000000..eaf245b Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/why-verity-fans-will-love-the-alpha-flame.mp3 differ diff --git a/CatherineLynwood/wwwroot/css/site.css b/CatherineLynwood/wwwroot/css/site.css index 9a0499f..79116bc 100644 --- a/CatherineLynwood/wwwroot/css/site.css +++ b/CatherineLynwood/wwwroot/css/site.css @@ -132,6 +132,20 @@ section { background-color: #010101; } +.follow-icon { + color: #FFF; + font-size: 1.5rem; + margin: 0 6px; + transition: color 0.2s ease; + text-decoration: none; + cursor: pointer; +} + + .follow-icon:hover { + color: #0077b5; + } + + #synopsis-body { overflow-y: auto; } @@ -139,3 +153,4 @@ section { .tagline-shadow { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); } + diff --git a/CatherineLynwood/wwwroot/css/site.min.css b/CatherineLynwood/wwwroot/css/site.min.css index 3357be7..2f7d5fd 100644 --- a/CatherineLynwood/wwwroot/css/site.min.css +++ b/CatherineLynwood/wwwroot/css/site.min.css @@ -1 +1 @@ -html{font-size:14px}@media(min-width:768px){html{font-size:16px}}html{position:relative}.content{min-height:93vh}.content{position:relative;z-index:1}section{padding-bottom:10px}.w-sm-50{width:100%}@media(min-width:576px){.w-sm-50{width:50%}}.w-md-50{width:100%}@media(min-width:768px){.w-md-50{width:50%}}.excerpt-section{background-color:#f8f9fa}.scene-image{max-width:100%;height:auto;border-radius:10px}.audio-player{margin:1rem 0}.chapter-text{font-family:'Georgia',serif;font-size:1.1rem;line-height:1.6;color:#333}.chapter-title{font-size:1.5rem;font-weight:bold;color:#555;margin-bottom:1rem}.responsive-border{border-right:3px solid #000}@media(max-width:575.98px){.responsive-border{border-right:0;border-bottom:3px solid #000}}.fit-image{width:100%;height:100%;object-fit:cover;object-position:center;display:block}.share-button{padding:8px 12px;margin-left:10px;margin-right:10px;color:#fff;text-decoration:none;border-radius:4px;font-size:14px}.share-button.facebook{background-color:#3b5998}.share-button.twitter{background-color:#1da1f2}.share-button.linkedin{background-color:#0077b5}.share-button.pinterest{background-color:#bd081c}.share-button.instagram{background-color:#e4405f}.share-button.tiktok{background-color:#010101}#synopsis-body{overflow-y:auto}.tagline-shadow{text-shadow:2px 2px 4px rgba(0,0,0,.8)} \ No newline at end of file +html{font-size:14px}@media(min-width:768px){html{font-size:16px}}html{position:relative}.content{min-height:93vh}.content{position:relative;z-index:1}section{padding-bottom:10px}.w-sm-50{width:100%}@media(min-width:576px){.w-sm-50{width:50%}}.w-md-50{width:100%}@media(min-width:768px){.w-md-50{width:50%}}.excerpt-section{background-color:#f8f9fa}.scene-image{max-width:100%;height:auto;border-radius:10px}.audio-player{margin:1rem 0}.chapter-text{font-family:'Georgia',serif;font-size:1.1rem;line-height:1.6;color:#333}.chapter-title{font-size:1.5rem;font-weight:bold;color:#555;margin-bottom:1rem}.responsive-border{border-right:3px solid #000}@media(max-width:575.98px){.responsive-border{border-right:0;border-bottom:3px solid #000}}.fit-image{width:100%;height:100%;object-fit:cover;object-position:center;display:block}.share-button{padding:8px 12px;margin-left:10px;margin-right:10px;color:#fff;text-decoration:none;border-radius:4px;font-size:14px}.share-button.facebook{background-color:#3b5998}.share-button.twitter{background-color:#1da1f2}.share-button.linkedin{background-color:#0077b5}.share-button.pinterest{background-color:#bd081c}.share-button.instagram{background-color:#e4405f}.share-button.tiktok{background-color:#010101}.follow-icon{color:#fff;font-size:1.5rem;margin:0 6px;transition:color .2s ease;text-decoration:none;cursor:pointer}.follow-icon:hover{color:#0077b5}#synopsis-body{overflow-y:auto}.tagline-shadow{text-shadow:2px 2px 4px rgba(0,0,0,.8)} \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/art-of-pacing-a-thriller.png b/CatherineLynwood/wwwroot/images/art-of-pacing-a-thriller.png new file mode 100644 index 0000000..d81da42 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/art-of-pacing-a-thriller.png differ diff --git a/CatherineLynwood/wwwroot/images/asking-for-reviews.png b/CatherineLynwood/wwwroot/images/asking-for-reviews.png new file mode 100644 index 0000000..d2ea38b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/asking-for-reviews.png differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-230.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-230.webp deleted file mode 100644 index cc73760..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-230.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-307.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-307.webp deleted file mode 100644 index 7fa54ff..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-307.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-396.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-396.webp deleted file mode 100644 index ca585af..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-396.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-400.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-400.webp deleted file mode 100644 index 8d59614..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-400.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-480.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-480.webp deleted file mode 100644 index 97e6c8d..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-480.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-560.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-560.webp deleted file mode 100644 index b93ab95..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-560.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-768.webp b/CatherineLynwood/wwwroot/images/catherine-lynwood-11-768.webp deleted file mode 100644 index 478e809..0000000 Binary files a/CatherineLynwood/wwwroot/images/catherine-lynwood-11-768.webp and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/help-indie-authors-with-reviews.png b/CatherineLynwood/wwwroot/images/help-indie-authors-with-reviews.png new file mode 100644 index 0000000..6dc1473 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/help-indie-authors-with-reviews.png differ diff --git a/CatherineLynwood/wwwroot/images/if-you-loved-gone-girl.png b/CatherineLynwood/wwwroot/images/if-you-loved-gone-girl.png new file mode 100644 index 0000000..0e4763e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/if-you-loved-gone-girl.png differ diff --git a/CatherineLynwood/wwwroot/images/jpg/art-of-pacing-a-thriller-400.jpg b/CatherineLynwood/wwwroot/images/jpg/art-of-pacing-a-thriller-400.jpg new file mode 100644 index 0000000..2bd4932 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/art-of-pacing-a-thriller-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/asking-for-reviews-400.jpg b/CatherineLynwood/wwwroot/images/jpg/asking-for-reviews-400.jpg new file mode 100644 index 0000000..e55f4b8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/asking-for-reviews-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/help-indie-authors-with-reviews-400.jpg b/CatherineLynwood/wwwroot/images/jpg/help-indie-authors-with-reviews-400.jpg new file mode 100644 index 0000000..745f24e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/help-indie-authors-with-reviews-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/if-you-loved-gone-girl-400.jpg b/CatherineLynwood/wwwroot/images/jpg/if-you-loved-gone-girl-400.jpg new file mode 100644 index 0000000..84bd988 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/if-you-loved-gone-girl-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/sisterhood-google-400.jpg b/CatherineLynwood/wwwroot/images/jpg/sisterhood-google-400.jpg new file mode 100644 index 0000000..97f6ed7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/sisterhood-google-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/the-soundtrack-of-1983-alpha-flame-400.jpg b/CatherineLynwood/wwwroot/images/jpg/the-soundtrack-of-1983-alpha-flame-400.jpg new file mode 100644 index 0000000..ac0569e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/the-soundtrack-of-1983-alpha-flame-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/the-women-who-inspired-the-alpha-flame-400.jpg b/CatherineLynwood/wwwroot/images/jpg/the-women-who-inspired-the-alpha-flame-400.jpg new file mode 100644 index 0000000..5138a67 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/the-women-who-inspired-the-alpha-flame-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/why-do-i-bother-indie-author-life-400.jpg b/CatherineLynwood/wwwroot/images/jpg/why-do-i-bother-indie-author-life-400.jpg new file mode 100644 index 0000000..dc9b5f3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/why-do-i-bother-indie-author-life-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/why-verity-fans-will-love-the-alpha-flame-400.jpg b/CatherineLynwood/wwwroot/images/jpg/why-verity-fans-will-love-the-alpha-flame-400.jpg new file mode 100644 index 0000000..7394c21 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/why-verity-fans-will-love-the-alpha-flame-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/sisterhood-google.png b/CatherineLynwood/wwwroot/images/sisterhood-google.png new file mode 100644 index 0000000..7030fc7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/sisterhood-google.png differ diff --git a/CatherineLynwood/wwwroot/images/the-soundtrack-of-1983-alpha-flame.png b/CatherineLynwood/wwwroot/images/the-soundtrack-of-1983-alpha-flame.png new file mode 100644 index 0000000..e06b051 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/the-soundtrack-of-1983-alpha-flame.png differ diff --git a/CatherineLynwood/wwwroot/images/the-women-who-inspired-the-alpha-flame.png b/CatherineLynwood/wwwroot/images/the-women-who-inspired-the-alpha-flame.png new file mode 100644 index 0000000..ff27031 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/the-women-who-inspired-the-alpha-flame.png differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-172.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-172.webp new file mode 100644 index 0000000..06a385d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-230.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-230.webp new file mode 100644 index 0000000..3933b36 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-288.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-288.webp new file mode 100644 index 0000000..c1885a9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-297.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-297.webp new file mode 100644 index 0000000..abeabc6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-360.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-360.webp new file mode 100644 index 0000000..aa01d32 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-384.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-384.webp new file mode 100644 index 0000000..0e89447 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-400.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-400.webp new file mode 100644 index 0000000..aed334e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-420.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-420.webp new file mode 100644 index 0000000..06d290c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-496.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-496.webp new file mode 100644 index 0000000..e1bb8e8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-576.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-576.webp new file mode 100644 index 0000000..6d4df27 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-600.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-600.webp new file mode 100644 index 0000000..d836669 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-700.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-700.webp new file mode 100644 index 0000000..5040f9d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-960.webp b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-960.webp new file mode 100644 index 0000000..3d53fe2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/art-of-pacing-a-thriller-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-172.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-172.webp new file mode 100644 index 0000000..953e579 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-230.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-230.webp new file mode 100644 index 0000000..1c542cf Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-288.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-288.webp new file mode 100644 index 0000000..4a22436 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-297.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-297.webp new file mode 100644 index 0000000..98364ba Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-360.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-360.webp new file mode 100644 index 0000000..149ede0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-384.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-384.webp new file mode 100644 index 0000000..5b5fa31 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-400.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-400.webp new file mode 100644 index 0000000..763c32e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-420.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-420.webp new file mode 100644 index 0000000..0948a57 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-496.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-496.webp new file mode 100644 index 0000000..3a98302 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-576.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-576.webp new file mode 100644 index 0000000..46f875b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-600.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-600.webp new file mode 100644 index 0000000..ddd3e2b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-700.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-700.webp new file mode 100644 index 0000000..69065ca Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-960.webp b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-960.webp new file mode 100644 index 0000000..380ba5f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/asking-for-reviews-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-172.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-172.webp new file mode 100644 index 0000000..fcb5a99 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-230.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-230.webp new file mode 100644 index 0000000..38b6e39 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-297.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-297.webp new file mode 100644 index 0000000..6d0bbab Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-360.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-360.webp new file mode 100644 index 0000000..d114f59 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-400.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-400.webp new file mode 100644 index 0000000..2b184cd Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-420.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-420.webp new file mode 100644 index 0000000..0950ce7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-576.webp b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-576.webp new file mode 100644 index 0000000..d4f9e0c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/help-indie-authors-with-reviews-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1200.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1200.webp new file mode 100644 index 0000000..063ca0a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1400.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1400.webp new file mode 100644 index 0000000..8e019cc Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-172.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-172.webp new file mode 100644 index 0000000..7940bf8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1920.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1920.webp new file mode 100644 index 0000000..6aee731 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-230.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-230.webp new file mode 100644 index 0000000..08089b0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-288.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-288.webp new file mode 100644 index 0000000..124ece2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-297.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-297.webp new file mode 100644 index 0000000..da3c80b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-360.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-360.webp new file mode 100644 index 0000000..5579f89 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-384.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-384.webp new file mode 100644 index 0000000..f1170d8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-400.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-400.webp new file mode 100644 index 0000000..67f0f2f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-420.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-420.webp new file mode 100644 index 0000000..fbe9745 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-496.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-496.webp new file mode 100644 index 0000000..bd66ebe Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-576.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-576.webp new file mode 100644 index 0000000..8b74966 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-600.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-600.webp new file mode 100644 index 0000000..3055e89 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-700.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-700.webp new file mode 100644 index 0000000..2d73cb9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-768.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-768.webp new file mode 100644 index 0000000..cd82e5e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-960.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-960.webp new file mode 100644 index 0000000..2199534 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-992.webp b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-992.webp new file mode 100644 index 0000000..834ffa3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/if-you-loved-gone-girl-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1200.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1200.webp new file mode 100644 index 0000000..e6aac32 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1400.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1400.webp new file mode 100644 index 0000000..09c5a7b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-172.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-172.webp new file mode 100644 index 0000000..203b40d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1920.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1920.webp new file mode 100644 index 0000000..d66f232 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-230.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-230.webp new file mode 100644 index 0000000..8b68474 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-288.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-288.webp new file mode 100644 index 0000000..60bffcf Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-297.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-297.webp new file mode 100644 index 0000000..9edb809 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-360.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-360.webp new file mode 100644 index 0000000..590a57a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-384.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-384.webp new file mode 100644 index 0000000..4cd80f1 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-400.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-400.webp new file mode 100644 index 0000000..47b6114 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-420.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-420.webp new file mode 100644 index 0000000..d848e69 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-496.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-496.webp new file mode 100644 index 0000000..d4c2d2b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-576.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-576.webp new file mode 100644 index 0000000..570e22b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-600.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-600.webp new file mode 100644 index 0000000..7d80460 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-700.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-700.webp new file mode 100644 index 0000000..fae9209 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-768.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-768.webp new file mode 100644 index 0000000..73c8b82 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-960.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-960.webp new file mode 100644 index 0000000..292fd88 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sisterhood-google-992.webp b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-992.webp new file mode 100644 index 0000000..bcfb819 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sisterhood-google-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-172.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-172.webp new file mode 100644 index 0000000..76f0710 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-230.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-230.webp new file mode 100644 index 0000000..0d65f81 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-297.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-297.webp new file mode 100644 index 0000000..a4af110 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-360.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-360.webp new file mode 100644 index 0000000..727c6be Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-400.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-400.webp new file mode 100644 index 0000000..c708106 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-420.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-420.webp new file mode 100644 index 0000000..7a7298d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-576.webp b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-576.webp new file mode 100644 index 0000000..013d376 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-soundtrack-of-1983-alpha-flame-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-172.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-172.webp new file mode 100644 index 0000000..7c0b767 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-230.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-230.webp new file mode 100644 index 0000000..d3c6724 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-297.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-297.webp new file mode 100644 index 0000000..e165fc9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-360.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-360.webp new file mode 100644 index 0000000..a9c5d18 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-400.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-400.webp new file mode 100644 index 0000000..5225529 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-420.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-420.webp new file mode 100644 index 0000000..b7f5d38 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-576.webp b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-576.webp new file mode 100644 index 0000000..efa9cbb Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-women-who-inspired-the-alpha-flame-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1200.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1200.webp new file mode 100644 index 0000000..bb66782 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1400.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1400.webp new file mode 100644 index 0000000..86ceb45 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-172.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-172.webp new file mode 100644 index 0000000..e5cce96 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1920.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1920.webp new file mode 100644 index 0000000..3e57d20 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-230.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-230.webp new file mode 100644 index 0000000..ce2efb5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-288.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-288.webp new file mode 100644 index 0000000..6138f1c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-297.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-297.webp new file mode 100644 index 0000000..13a944a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-360.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-360.webp new file mode 100644 index 0000000..1d0efe2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-384.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-384.webp new file mode 100644 index 0000000..c5302e4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-400.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-400.webp new file mode 100644 index 0000000..a3932e5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-420.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-420.webp new file mode 100644 index 0000000..e41d286 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-496.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-496.webp new file mode 100644 index 0000000..6151045 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-576.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-576.webp new file mode 100644 index 0000000..423a4bb Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-600.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-600.webp new file mode 100644 index 0000000..4cb0f6c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-700.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-700.webp new file mode 100644 index 0000000..346da1f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-768.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-768.webp new file mode 100644 index 0000000..66081ac Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-960.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-960.webp new file mode 100644 index 0000000..5cab45f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-992.webp b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-992.webp new file mode 100644 index 0000000..2fd0026 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-do-i-bother-indie-author-life-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1200.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1200.webp new file mode 100644 index 0000000..684dbb2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1400.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1400.webp new file mode 100644 index 0000000..0eb73a6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-172.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-172.webp new file mode 100644 index 0000000..6ee322c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1920.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1920.webp new file mode 100644 index 0000000..7ebbc27 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-230.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-230.webp new file mode 100644 index 0000000..9d3c60f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-288.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-288.webp new file mode 100644 index 0000000..e34baae Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-297.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-297.webp new file mode 100644 index 0000000..16ba11a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-360.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-360.webp new file mode 100644 index 0000000..a690c14 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-384.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-384.webp new file mode 100644 index 0000000..7b4a8b0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-400.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-400.webp new file mode 100644 index 0000000..05d8854 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-420.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-420.webp new file mode 100644 index 0000000..f7a54d9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-496.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-496.webp new file mode 100644 index 0000000..f4c63e3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-576.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-576.webp new file mode 100644 index 0000000..0850598 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-600.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-600.webp new file mode 100644 index 0000000..9c8c0fd Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-700.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-700.webp new file mode 100644 index 0000000..ee79b91 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-768.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-768.webp new file mode 100644 index 0000000..161e829 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-960.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-960.webp new file mode 100644 index 0000000..d041ee7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-992.webp b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-992.webp new file mode 100644 index 0000000..dd2c605 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/why-verity-fans-will-love-the-alpha-flame-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/why-do-i-bother-indie-author-life.png b/CatherineLynwood/wwwroot/images/why-do-i-bother-indie-author-life.png new file mode 100644 index 0000000..9137698 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/why-do-i-bother-indie-author-life.png differ diff --git a/CatherineLynwood/wwwroot/images/why-verity-fans-will-love-the-alpha-flame.png b/CatherineLynwood/wwwroot/images/why-verity-fans-will-love-the-alpha-flame.png new file mode 100644 index 0000000..5e7e61d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/why-verity-fans-will-love-the-alpha-flame.png differ diff --git a/CatherineLynwood/wwwroot/robots.txt b/CatherineLynwood/wwwroot/robots.txt index ef02a26..17b9486 100644 --- a/CatherineLynwood/wwwroot/robots.txt +++ b/CatherineLynwood/wwwroot/robots.txt @@ -1,4 +1,7 @@ User-agent: * Allow: / +User-agent: Dataprovider.com +Disallow: / + Sitemap: https://www.catherinelynwood.com/sitemap.xml diff --git a/CatherineLynwood/wwwroot/site.webmanifest b/CatherineLynwood/wwwroot/site.webmanifest new file mode 100644 index 0000000..51fc449 --- /dev/null +++ b/CatherineLynwood/wwwroot/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Catherine Lynwood", + "short_name": "Catherine Lynwood", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#17C8EB", + "background_color": "#17C8EB", + "display": "standalone" +} \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/videos/Chapter-10-Preview-Beth.mp4 b/CatherineLynwood/wwwroot/videos/Chapter-10-Preview-Beth.mp4 new file mode 100644 index 0000000..1c91460 Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/Chapter-10-Preview-Beth.mp4 differ diff --git a/CatherineLynwood/wwwroot/videos/art-of-pacing-a-thriller.mp4 b/CatherineLynwood/wwwroot/videos/art-of-pacing-a-thriller.mp4 new file mode 100644 index 0000000..937d81e Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/art-of-pacing-a-thriller.mp4 differ diff --git a/CatherineLynwood/wwwroot/videos/asking-for-reviews.mp4 b/CatherineLynwood/wwwroot/videos/asking-for-reviews.mp4 new file mode 100644 index 0000000..54b1976 Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/asking-for-reviews.mp4 differ diff --git a/CatherineLynwood/wwwroot/videos/background-square.mp4 b/CatherineLynwood/wwwroot/videos/background-square.mp4 new file mode 100644 index 0000000..eaece44 Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/background-square.mp4 differ diff --git a/CatherineLynwood/wwwroot/videos/background.mp4 b/CatherineLynwood/wwwroot/videos/background.mp4 new file mode 100644 index 0000000..4865b2b Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/background.mp4 differ diff --git a/CatherineLynwood/wwwroot/videos/why-verity-fans-will-love-the-alpha-flame.mp4 b/CatherineLynwood/wwwroot/videos/why-verity-fans-will-love-the-alpha-flame.mp4 new file mode 100644 index 0000000..9e74167 Binary files /dev/null and b/CatherineLynwood/wwwroot/videos/why-verity-fans-will-love-the-alpha-flame.mp4 differ