mirror of
https://github.com/harivansh-afk/Austens-Wedding-Guide.git
synced 2026-04-17 21:03:02 +00:00
removed blog post
This commit is contained in:
parent
e06beffcac
commit
2cf48254c4
13 changed files with 35 additions and 533 deletions
|
|
@ -1,58 +0,0 @@
|
|||
export const blogPosts = {
|
||||
charlotte: [
|
||||
{
|
||||
id: '1',
|
||||
title: 'The Pragmatic Path to Marriage',
|
||||
author: 'Charlotte Lucas',
|
||||
authorImage: '/images/authors/charlotte.jpg',
|
||||
date: '1813-01-15',
|
||||
content: [
|
||||
'My dear readers, I must confess that happiness in marriage is entirely a matter of chance. There will always be vexation and grief, and it is better to know as little as possible of the defects of the person with whom you are to pass your life.',
|
||||
'I am not romantic, you know. I never was. I ask only a comfortable home; and considering Mr. Collins\'s character, connections, and situation in life, I am convinced that my chance of happiness with him is as fair as most people can boast on entering the marriage state.',
|
||||
'Let us be practical in our pursuit of matrimony. A woman must secure her future while she has the power to do so.'
|
||||
]
|
||||
}
|
||||
],
|
||||
marianne: [
|
||||
{
|
||||
id: '2',
|
||||
title: 'The Heart Must Lead',
|
||||
author: 'Marianne Dashwood',
|
||||
authorImage: '/images/authors/marianne.jpg',
|
||||
date: '1813-03-15',
|
||||
content: [
|
||||
'To love is to burn, to be on fire! How can one possibly consider marriage without the deepest feelings of love and devotion?',
|
||||
'I could not be happy with a man whose taste did not in every point coincide with my own. He must enter into all my feelings; the same books, the same music must charm us both.',
|
||||
'Let others speak of prudence and practicality, but I shall never sacrifice the dictates of my heart to the opinions of the world.'
|
||||
]
|
||||
}
|
||||
],
|
||||
fanny: [
|
||||
{
|
||||
id: '3',
|
||||
title: 'On Principle and Affection',
|
||||
author: 'Fanny Price',
|
||||
authorImage: '/images/authors/fanny.jpg',
|
||||
date: '1814-01-15',
|
||||
content: [
|
||||
'We must all be guided by our own understanding of what is right. No circumstance should persuade us to act against our principles.',
|
||||
'True affection grows slowly, nurtured by shared values and mutual respect. It cannot be forced or rushed by the expectations of others.',
|
||||
'In matters of the heart, we must trust our own judgment above all else.'
|
||||
]
|
||||
}
|
||||
],
|
||||
catherine: [
|
||||
{
|
||||
id: '4',
|
||||
title: 'Romance and Reality',
|
||||
author: 'Catherine Morland',
|
||||
authorImage: '/images/authors/catherine.jpg',
|
||||
date: '1814-02-15',
|
||||
content: [
|
||||
'How thrilling it is to discover that real life can be just as fascinating as our favorite novels!',
|
||||
'Yet we must learn to distinguish between romantic fancy and true character. Not every ancient abbey holds a terrible secret, nor is every charming acquaintance hiding dark mysteries.',
|
||||
'The greatest adventures may be found in opening our hearts to genuine friendship and love.'
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
export interface BlogPost {
|
||||
id: number;
|
||||
title: string;
|
||||
character: string;
|
||||
date: string;
|
||||
content: string;
|
||||
imageUrl: string;
|
||||
tags?: string[];
|
||||
likes?: number;
|
||||
}
|
||||
|
||||
export const blogPosts: BlogPost[] = [
|
||||
{
|
||||
id: 1,
|
||||
title: "The Spirit of Community",
|
||||
character: "Lewis",
|
||||
date: "Spring 1",
|
||||
content: "As mayor of Pelican Town, nothing brings me more joy than seeing our community thrive. Today, our newest farmer arrived, breathing life into old Grandpa's farm. The look of determination in their eyes reminds me of the valley's golden days. Speaking of which, I should remind everyone about the upcoming Egg Festival - Marnie's chickens have been especially productive this year! And please, if anyone sees Pierre, tell him I need to discuss the flower arrangements for the town square...",
|
||||
imageUrl: "/images/blogs/lewis-blog.png",
|
||||
tags: ["community", "events", "announcements"],
|
||||
likes: 156
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Tales from the Sea",
|
||||
character: "Willy",
|
||||
date: "Spring 15",
|
||||
content: "The morning mist rolled in thick today, just the way I like it. Found something peculiar in my crab pots - a message in a bottle! Reminded me of my old sailor days... For those interested in fishing, the legend of the Crimsonfish resurfaces every summer. Some say it's just a tale, but I've seen things in these waters that would make a seasoned sailor question everything. Drop by the shop if you want to hear more, or need some quality bait.",
|
||||
imageUrl: "/images/blogs/willy-blog.png",
|
||||
tags: ["fishing", "legends", "sea stories"],
|
||||
likes: 89
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Behind the Bar",
|
||||
character: "Gus",
|
||||
date: "Summer 1",
|
||||
content: "Every night at the Stardrop Saloon tells a different story. Yesterday, Pam shared tales of her trucking days while Emily's positive energy kept everyone's spirits high. Shane actually joined a conversation about chicken farming with Marnie - a rare sight indeed! My special spaghetti recipe was a hit again, though I'll never reveal the secret ingredient (sorry, Lewis!). Remember, Fridays mean special discounts on pale ale - locally sourced from our very own farmer!",
|
||||
imageUrl: "/images/blogs/gus-blog.png",
|
||||
tags: ["saloon", "recipes", "community"],
|
||||
likes: 124
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Wizard's Musings",
|
||||
character: "Wizard",
|
||||
date: "Fall 13",
|
||||
content: "The veil between realms grows thin as we approach the season of spirits. I've observed unusual activities in the witch's swamp, and the junimos seem more active than ever. For those brave souls interested in the arcane arts, I'm considering hosting a seminar on mushroom identification and their magical properties. Note: Please stop asking about love potions - they're strictly forbidden and highly unstable...",
|
||||
imageUrl: "/images/blogs/wizard-blog.png",
|
||||
tags: ["magic", "junimos", "mystical"],
|
||||
likes: 201
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Adventures in Mining",
|
||||
character: "Clint",
|
||||
date: "Winter 8",
|
||||
content: "Found an extraordinary geode yesterday - the crystalline structure unlike anything I've seen before. If you're planning to explore the mines, remember to bring your sword and plenty of torches. I'm offering a special discount on tool upgrades this week. And no, I haven't worked up the courage to... well, never mind. Just come by the shop if you need anything forged.",
|
||||
imageUrl: "/images/blogs/clint-blog.png",
|
||||
tags: ["mining", "blacksmith", "tools"],
|
||||
likes: 67
|
||||
}
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue