Error CS1525, Error CS8025

Hello guys, i need help it says there unexpected symbol ‘}’ thanks!

using UnityEngine;
using System.Collections;

public class MainMenuButtons : MonoBehaviour
{

function About()
{
		Application.LoadLevel("About")
}

},using UnityEngine;
using System.Collections;

public class MainMenuButtons : MonoBehaviour
{

function About()
{
		Application.LoadLevel("About")
}

}

hello guys, can someone help me? im creating a button for my apps, i dnt have any experience on programming. thanks!

You’re missing a semi colon ‘;’ you load level line should be

 Application.LoadLevel("About");

Then the error about the bracket not being correct will go away.