Skip to content

Commit

Permalink
menulist
Browse files Browse the repository at this point in the history
  • Loading branch information
ijayhub committed Jan 7, 2023
0 parents commit c2b5045
Show file tree
Hide file tree
Showing 37 changed files with 4,274 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
98 changes: 98 additions & 0 deletions data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
export const data = [
{
title: 'Egg sauce',
img: './src/img/b1.jpg',
para: 'Egg sauce It’s typically one of Nigerian staple food that is perfect for breakfast.',
price: '#1500',
type: 'breakfast',
id: 1,
},
{
title: 'Abacha',
img: './src/img/lm5.jpg',
para: 'African salad is native to the ndi Igbo (people of Igbo).',
price: '#3000',
type: 'lunch',
id: 2,
},
{
title: 'Boiled Potatoes',
img: './src/img/dm1.jpg',
para: 'Boiled potatoes are highly nutritious mostly for kids and everyone contains fiber.',
price: '#1000',
type: 'dinner',
id: 3,
},
{
title: 'Grilled plantain',
img: './src/img/sm3.jpg',
para: 'Grilled plantain are commonly called "bole in nigeria" eaten with roasted groundnut, smoked fish, palm-oil and pepper sauce. ',
price: '#300',
type: 'snacks',
id: 4,
},
{
title: 'Akara and Pap',
img: './src/img/b2.jpg',
para: 'Akara and Pap is Naija’s weekend morning meal for most homes because of its light and filling nature.',
price: '#300',
type: 'breakfast',
id: 5,
},
{
title: 'Pounded yam and egusi soup',
img: './src/img/lm3.jpg',
para: 'Pounded Yam and egusi is a very delicious meal.',
price: '#2000',
type: 'lunch',
id: 6,
},
{
title: 'Spagetti',
img: './src/img/dm3c.jpg',
para: ' spaggetti is a starchy pasta of Italian origin that is made in the form of long strings, boiled, and served with any of a variety of meat, tomato, or other sauces.',
price: '#1500',
type: 'dinner',
id: 7,
},
{
title: 'Puff Puff',
img: './src/img/sm2.jpg',
para: 'Puff-puff, as it is called in Nigeria and Sierra Leone, sometimes Ghana, and in anglophone Cameroon, is a traditional African snack made of fried dough.',
price: '#200',
type: 'snacks',
id: 8,
},
{
title: 'Toast Bread and Tea',
img: './src/img/b3.jpg',
para: 'Most homes in nigeria love our bread toasted but served with sauce or drank with hot tea or chocolate drink',
price: '#1000',
type: 'breakfast',
id: 9,
},
{
title: 'Jollof rice',
img: './src/img/lm1.jpg',
para: 'Jollof, or jollof rice, is a rice dish from West Africa. It is widely eaten by all.',
price: '#2000',
type: 'lunch',
id: 10,
},
{
title: 'Boiled plaintain',
img: './src/img/dm4a.jpg',
para: 'Boiled plaintain are highly nutritious for everyone, boiled plaintain can be served with different sauce',
price: '#2000',
type: 'dinner',
id: 11,
},
{
title: 'corn',
img: './src/img/sm4.jpg',
para: 'corn can highly nutritious and can be eaten roasted, boiled also can be eaten with coconut and pear',
price: '#500',
type: 'snacks',
id: 12,
},
];
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cr Menu💖</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit c2b5045

Please sign in to comment.