+ );
+};
+
+const confusedWordsData = [
+ {
+ title: "Affect vs. Effect",
+ content: [
+ {
+ label: "Affect (verb):",
+ description: "To influence or make a difference to.",
+ partOfSpeech: "verb",
+ },
+ {
+ label: "Affect (noun):",
+ description: "An emotion or desire as influencing behavior.",
+ partOfSpeech: "noun",
+ },
+ {
+ label: "Effect (noun):",
+ description: "A result or consequence.",
+ partOfSpeech: "noun",
+ },
+ {
+ label: "Effect (verb):",
+ description: "To bring about or cause to happen.",
+ partOfSpeech: "verb",
+ },
+ {
+ example:
+ "The weather affects my mood. / The effect of the weather on my mood is noticeable.",
+ },
+ {
+ example:
+ "The medication may affect your coordination. / The side effects of the medication include drowsiness.",
+ },
+ ],
+ },
+ {
+ title: "Their vs. There vs. They're",
+ content: [
+ {
+ label: "Their:",
+ description: "Possessive pronoun",
+ partOfSpeech: "pronoun",
+ },
+ {
+ label: "There:",
+ description: "Indicating location or existence",
+ partOfSpeech: "adverb",
+ },
+ {
+ label: "They're:",
+ description: 'Contraction of "they are"',
+ partOfSpeech: "contraction",
+ },
+ { example: "They're going to their house over there." },
+ {
+ example:
+ "Their car is parked over there. They're planning to sell it soon.",
+ },
+ ],
+ },
+ {
+ title: "Its vs. It's",
+ content: [
+ {
+ label: "Its:",
+ description: "Possessive pronoun",
+ partOfSpeech: "pronoun",
+ },
+ {
+ label: "It's:",
+ description: 'Contraction of "it is" or "it has"',
+ partOfSpeech: "contraction",
+ },
+ { example: "It's important to know its meaning." },
+ {
+ example:
+ "The dog wagged its tail. It's been a long day for the pup.",
+ },
+ ],
+ },
+ {
+ title: "Your vs. You're",
+ content: [
+ {
+ label: "Your:",
+ description: "Possessive pronoun",
+ partOfSpeech: "pronoun",
+ },
+ {
+ label: "You're:",
+ description: 'Contraction of "you are"',
+ partOfSpeech: "contraction",
+ },
+ {
+ example:
+ "Your book is on the table. You're going to need it for class.",
+ },
+ { example: "You're responsible for your own actions." },
+ ],
+ },
+ {
+ title: "To vs. Too vs. Two",
+ content: [
+ {
+ label: "To:",
+ description: "Preposition indicating direction or recipient",
+ partOfSpeech: "preposition",
+ },
+ {
+ label: "Too:",
+ description: "Also or excessively",
+ partOfSpeech: "adverb",
+ },
+ {
+ label: "Two:",
+ description: "The number 2",
+ partOfSpeech: "noun",
+ },
+ {
+ example:
+ "I'm going to the store to buy two apples. Do you want to come too?",
+ },
+ { example: "The coffee is too hot to drink right now." },
+ ],
+ },
+];
+
+const dailyWordSuggestionsData = [
+ {
+ title: "Hery",
+ definition: "To worship or praise",
+ turkish: "Övmek",
+ example: "The ancient text heried the deeds of the hero.",
+ partOfSpeech: "verb",
+ etymology:
+ "From Middle English herien, from Old English herian, herġan ('to praise, glorify').",
+ },
+ {
+ title: "Hallow",
+ definition: "To make holy or sacred",
+ turkish: "Kutsallaştırmak",
+ example: "The ground was hallowed by the ceremony.",
+ partOfSpeech: "verb",
+ etymology:
+ "From Middle English halwen, from Old English hālgian ('to make holy').",
+ },
+ {
+ title: "Fiend",
+ definition: "An evil spirit or demon",
+ turkish: "Şeytan",
+ example: "The story depicted a fiend terrorizing the village.",
+ partOfSpeech: "noun",
+ etymology:
+ "From Middle English feend, from Old English fēond ('enemy, devil, demon').",
+ },
+ {
+ title: "Ephemeral",
+ definition: "Lasting for a very short time",
+ turkish: "Geçici",
+ example:
+ "The beauty of cherry blossoms is ephemeral, lasting only a few days.",
+ partOfSpeech: "adjective",
+ etymology:
+ "From Greek ephēmeros ('lasting only one day, short-lived').",
+ },
+ {
+ title: "Serendipity",
+ definition:
+ "The occurrence of events by chance in a happy or beneficial way",
+ turkish: "Şans eseri",
+ example: "Finding his lost wallet was a moment of serendipity.",
+ partOfSpeech: "noun",
+ etymology:
+ "Coined by Horace Walpole in 1754 based on the Persian fairy tale 'The Three Princes of Serendip'.",
+ },
+];
+
+const technicalDefinitionsData = [
+ {
+ title: "API",
+ fullForm: "Application Programming Interface",
+ definition:
+ "A set of protocols and tools for building software applications",
+ example:
+ "The weather app uses an API to fetch current temperature data.",
+ categories: ["Software Development", "Web Development"],
+ relatedTerms: ["REST", "SOAP", "GraphQL"],
+ },
+ {
+ title: "ORM",
+ fullForm: "Object-Relational Mapping",
+ definition:
+ "A technique for converting data between incompatible type systems in databases and object-oriented programming languages",
+ example:
+ "Using an ORM can simplify database operations in your application.",
+ categories: ["Database", "Software Development"],
+ relatedTerms: ["SQL", "Database Schema", "Hibernate"],
+ },
+ {
+ title: "JWT",
+ fullForm: "JSON Web Token",
+ definition:
+ "A compact, URL-safe means of representing claims to be transferred between two parties",
+ example:
+ "JWTs are commonly used for authentication in web applications.",
+ categories: ["Web Security", "Authentication"],
+ relatedTerms: ["OAuth", "Bearer Token", "JSON"],
+ },
+ {
+ title: "DNS",
+ fullForm: "Domain Name System",
+ definition:
+ "A hierarchical and decentralized naming system for computers, services, or other resources connected to the Internet or a private network",
+ example: "DNS translates human-readable domain names to IP addresses.",
+ categories: ["Networking", "Internet Infrastructure"],
+ relatedTerms: ["IP Address", "ICANN", "Domain Registrar"],
+ },
+ {
+ title: "CORS",
+ fullForm: "Cross-Origin Resource Sharing",
+ definition:
+ "A mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the first resource was served",
+ example:
+ "CORS policies help prevent unauthorized access to APIs from different domains.",
+ categories: ["Web Security", "Web Development"],
+ relatedTerms: [
+ "Same-Origin Policy",
+ "Preflight Request",
+ "XMLHttpRequest",
+ ],
+ },
+];
export const Home = () => {
return (
@@ -9,6 +271,77 @@ export const Home = () => {
English. You can take quizzes and use forums to improve your
English."
/>
+
+
+