mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-05-29 14:53:16 +00:00
Add some of my Certificates to the page
This commit is contained in:
parent
683ece66db
commit
5c41d81288
10 changed files with 128 additions and 6 deletions
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"title": "Databases with SQL and Python",
|
||||
"provider": "Hyperskill",
|
||||
"achieved": "2023-07-01",
|
||||
"skills": [ "SQL", "SQLAlchemy", "Python", "SQLite" ],
|
||||
"link": ""
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"title": "Introduction to Command Line and Unix Shell",
|
||||
"provider": "Hyperskill",
|
||||
"achieved": "2023-07-01",
|
||||
"skills": [ "Bash", "Shell Scripting", "Linux", "Unix" ],
|
||||
"link": ""
|
||||
}
|
7
src/content/certificates/Introduction-to-Python.json
Normal file
7
src/content/certificates/Introduction-to-Python.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"title": "Introduction to Python",
|
||||
"provider": "Hyperskill",
|
||||
"achieved": "2023-07-01",
|
||||
"skills": [ "Python" ],
|
||||
"link": ""
|
||||
}
|
7
src/content/certificates/Introduction-to-SQL.json
Normal file
7
src/content/certificates/Introduction-to-SQL.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"title": "Introduction to SQL",
|
||||
"provider": "Hyperskill",
|
||||
"achieved": "2023-07-01",
|
||||
"skills": [ "SQL", "SQLite", "Databases" ],
|
||||
"link": ""
|
||||
}
|
|
@ -22,7 +22,19 @@ const projectsCollection = defineCollection({
|
|||
}),
|
||||
});
|
||||
|
||||
const certificatesCollection = defineCollection({
|
||||
type: "data",
|
||||
schema: z.object({
|
||||
title: z.string(),
|
||||
provider: z.string(),
|
||||
achieved: z.date(),
|
||||
skills: z.array(z.string()).optional(),
|
||||
link: z.string().optional(),
|
||||
}),
|
||||
})
|
||||
|
||||
export const collections = {
|
||||
"posts": postsCollection,
|
||||
"projects": projectsCollection,
|
||||
"certificates": certificatesCollection,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue