Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(*): English lesson job interview #6

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 118 additions & 0 deletions src/app/learn-english/data/past_experience.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"id": 1,
"name": "Past Experience",
"description": "This is a description of the past experience",
"grammar": [
{
"name": "Past Simple",
"description": "Use the past simple tense for completed actions in the past. This is the most common tense for describing past experiences.",
"rules": {
"positive": "subject + verb + ed",
"negative": "subject + did not + verb",
"question": "did + subject + verb"
},
"examples": [
"I went to the store.",
"She played the piano.",
"We watched a movie."
]
},
{
"name": "Past Continuous",
"description": "Use the past continuous tense for actions that were in progress at a specific time in the past.",
"rules": {
"positive": "subject + was/were + verb + ing",
"negative": "subject + was/were not + verb + ing",
"question": "was/were + subject + verb + ing"
},
"examples": [
"I was reading a book.",
"She was cooking dinner.",
"We were watching TV."
]
},
{
"name": "Past Perfect",
"description": "Use the past perfect tense for actions that were completed before another action in the past.",
"rules": {
"positive": "subject + had + verb + ed",
"negative": "subject + had not + verb + ed",
"question": "had + subject + verb + ed"
},
"examples": [
"I had finished my homework before dinner.",
"She had already left when I arrived.",
"We had already eaten when the movie started."
]
},
{
"name": "Past Perfect Continuous",
"description": "Use the past perfect continuous tense for actions that were in progress before another action in the past.",
"rules": {
"positive": "subject + had + been + verb + ing",
"negative": "subject + had not + been + verb + ing",
"question": "had + subject + been + verb + ing"
},
"examples": [
"I had been studying for two hours when she called.",
"She had been working all day when I saw her.",
"We had been waiting for an hour when the bus arrived."
]
},
{
"name": "Used to",
"description": "Use 'used to' to describe past habits or states that are no longer true.",
"rules": {
"positive": "subject + used to + verb",
"negative": "subject + did not + use to + verb",
"question": "did + subject + use to + verb"
},
"examples": [
"I used to play the piano.",
"She used to live in New York.",
"We used to go to the beach every summer."
]
},
{
"name": "Would",
"description": "Use 'would' to describe past habits or states that are no longer true.",
"rules": {
"positive": "subject + would + verb",
"negative": "subject + would not + verb",
"question": "would + subject + verb"
},
"examples": [
"I would play the piano.",
"She would live in New York.",
"We would go to the beach every summer."
]
}
],
"vocabulary": [
{
"name": "Verbs",
"description": "These are some common verbs used to describe past experiences.",
"words": [
"achieved",
"acquired",
"collaborated",
"contributed",
"coordinated",
"demonstrated",
"developed",
"implemented",
"initiated",
"led",
"managed",
"organized",
"participated",
"presented",
"resolved",
"streamlined",
"supervised",
"tackled",
"trained"
]
}
]
}
9 changes: 9 additions & 0 deletions src/app/learn-english/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ export default function LearnEnglishPage () {
return (
<div>
<h1>Learn English</h1>

<h3>Situations</h3>

<section>
<h4>Job interview</h4>
<p>Some text about job interview</p>
</section>


<p>Some text about learning English</p>

<h3>job interview</h3>
Expand Down
Loading